Skip to content

UTMCoordinates

huggins edited this page May 10, 2023 · 1 revision

UTM Coordinates

Contains information for Universal Transverse Mercator (UTM) coordinates.

public struct FUTMCoordinates

Back to Top


Members

Type Name Description
double Easting The phi (roll) value.
double Northing The psi (heading) value.
string Zone The theta (pitch) value.

Back to Top


Constructors

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.

Back to Top


Details

Easting

double Easting

The UTM Easting value.

Back to Top


Northing

double Northing

The UTM Northing value.

Back to Top


Zone

string Zone

The UTM Zone that the easting and northing values are relative to.

Back to Top


FUTMCoordinates

FUTMCoordinates()

Default constructor

Back to Top


FUTMCoordinates

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.

Back to Top


Clone this wiki locally