C# Class ProjNet.CoordinateSystems.Projection

Inheritance: Info, IProjection
Show file Open project: fivepmtechnology/ProjNET Class Usage Examples

Private Properties

Property Type Description
Projection System

Public Methods

Method Description
EqualParams ( object obj ) : bool

Checks whether the values of this instance is equal to the values of another instance. Only parameters used for coordinate system are used for comparison. Name, abbreviation, authority, alias and remarks are ignored in the comparison.

GetParameter ( int n ) : ProjectionParameter

Gets an indexed parameter of the projection.

GetParameter ( string name ) : ProjectionParameter

Gets an named parameter of the projection.

The parameter name is case insensitive

Private Methods

Method Description
Projection ( string className, List parameters, string name, string authority, long code, string alias, string remarks, string abbreviation ) : System

Method Details

EqualParams() public method

Checks whether the values of this instance is equal to the values of another instance. Only parameters used for coordinate system are used for comparison. Name, abbreviation, authority, alias and remarks are ignored in the comparison.
public EqualParams ( object obj ) : bool
obj object
return bool

GetParameter() public method

Gets an indexed parameter of the projection.
public GetParameter ( int n ) : ProjectionParameter
n int Index of parameter
return ProjectionParameter

GetParameter() public method

Gets an named parameter of the projection.
The parameter name is case insensitive
public GetParameter ( string name ) : ProjectionParameter
name string Name of parameter
return ProjectionParameter