-
Notifications
You must be signed in to change notification settings - Fork 6
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 EastingThe UTM Easting value.
double NorthingThe UTM Northing value.
string ZoneThe 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. |