InterpolatingConverterCalculateGridSizeFromErrorEstimate Method |
Calculate and return a grid size estimate based on a max error.
This only returns an indication, the actual error will usually
be larger than the max error, for the returned grid size.
Grid size cannot be larger than extent of area in x and y direction.
Namespace: DHI.ProjectionsAssembly: DHI.Projections (in DHI.Projections.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public double CalculateGridSizeFromErrorEstimate(
double maxError,
double minGridsize,
double maxGridsize
)
Public Function CalculateGridSizeFromErrorEstimate (
maxError As Double,
minGridsize As Double,
maxGridsize As Double
) As Double
public:
double CalculateGridSizeFromErrorEstimate(
double maxError,
double minGridsize,
double maxGridsize
)
member CalculateGridSizeFromErrorEstimate :
maxError : float *
minGridsize : float *
maxGridsize : float -> float
Parameters
- maxError
- Type: SystemDouble
Maximum error to set grid size for - minGridsize
- Type: SystemDouble
Smallest grid size allowed - maxGridsize
- Type: SystemDouble
Largest grid size allowed
Return Value
Type:
DoubleGrid size
See Also