-
Notifications
You must be signed in to change notification settings - Fork 4
UTMCoordinates
huggins edited this page May 10, 2023
·
1 revision
Contains information for Universal Transverse Mercator (UTM) coordinates.
public struct FUTMCoordinates
Type | Name | Description |
---|---|---|
double | Easting | The phi (roll) value. |
double | Northing | The psi (heading) value. |
string | Zone | The theta (pitch) value. |
Name | Description |
---|---|
FUTMCoordinates() | Default constructor |
FUTMCoordinates(double UTMEasting, double UTMNorthing, string UTMZone) | Constructor that takes in individual values for the UTM easting, northing, and zone. |
double Easting
The UTM Easting value.
double Northing
The UTM Northing value.
string Zone
The UTM Zone that the easting and northing values are relative to.
FUTMCoordinates()
Default constructor
FUTMCoordinates
(
double UTMEasting,
double UTMNorthing,
string UTMZone
)
Constructor that takes in individual values for the UTM easting, northing, and zone.
Parameter | Description |
---|---|
UTMEasting | The UTM easting value. |
UTMNorthing | The UTM northing value. |
UTMZone | The UTM Zone that the easting and northing values are relative to. |