ICoordinateOperationParameters

Description

interface Tinman.Terrain.Georef.ICoordinateOperationParameters

Extended by

CoordinateOperation sealed

Base interface for classes that contain coordinate operation parameters values.

Public / Methods

Get


public method Get → (2)

parameter in : CoordinateOperationParameter

The parameter.

unit opt : UnitOfMeasure = null

The unit to return or null to use the default unit for the parameter type. Defaults to null.

returns → float64

The parameter value.

Returns the value of the given parameter.

GeorefException

If parameter in is invalid.

Has


public method Has → (1)

parameter in : CoordinateOperationParameter

The parameter.

returns → bool

true if the parameter has a value, false if it has not been specified.

Does the given parameter have a value?

Extensions

Check


public static method Check → (2)

parameter in : CoordinateOperationParameter

The parameter to check.

missing in : ICollector<CoordinateOperationParameter>

[not-null]
Output for missing parameters.

Checks if parameter in is present; if not, it is added to missing in.

Get


public static method Get → (3)

parameter in : CoordinateOperationParameter

The parameter to get.

defaultValue in : float64

The default value to return if parameter in is not present.

unit opt : UnitOfMeasure = null

The unit to return or null to use the default unit for the parameter type. Defaults to null.

returns → float64

The parameter value.

Returns the given parameter in if it is present; returns the specified default value otherwise.