convert_utm_to_latlon#
- ansys.aedt.core.modeler.advanced_cad.osm.convert_utm_to_latlon(east: float | int, north: float | int, zone_number: int, zone_letter: str = None, northern: bool = None) tuple[float, float]#
Convert UTM (Universal Transverse Mercator) coordinates to latitude and longitude.
- Parameters:
- east
int East value of UTM coordinates.
- north
int North value of UTM coordinates.
- zone_number: int, optional
Global map numbers of a UTM zone numbers map.
- zone_letter: str, optional
UTM zone designators. The default is
None. The valid zone letters are"CDEFGHJKLMNPQRSTUVWXX"- northern: bool, optional
Indicates whether the UTM coordinates are in the Northern Hemisphere. If
True, the coordinates are treated as being north of the equator, ifFalse, they are treated as being south of the equator. The default isNonein which case the method determines the hemisphere usingzone_letter.
- east
- Returns:
tupleTuple containing latitude and longitude.
Notes