 | UniversalTransverseMercator Constructor (String, Double, Double, Double, Double) |
Creates a UniversalTransverMercator (UTM) object with a custom WGS84 datum(ellipsoid).
Namespace:
CoordinateSharp
Assembly:
CoordinateSharp (in CoordinateSharp.dll) Version: 2.12.1.1
Syntaxpublic UniversalTransverseMercator(
string gridZone,
double est,
double nrt,
double radius,
double flatten
)
Parameters
- gridZone
- Type: SystemString
UTM Grid Zone Designation - est
- Type: SystemDouble
Easting - nrt
- Type: SystemDouble
Northing - radius
- Type: SystemDouble
Equatorial Radius - flatten
- Type: SystemDouble
Inverse Flattening
ExamplesUniversalTransverseMercator utm = new UniversalTransverseMercator("14Q", 581943.5, 2111989.8, 6378160.000, 298.25);
See Also