Coordinate Enumerations¶
Enumerations for specifying coordinate transformation types.
EllipsoidalConversionType¶
EllipsoidalConversionType
¶
Python wrapper for EllipsoidalConversionType enum
Specifies the type of ellipsoidal conversion used in coordinate transformations.
Initialize instance.
GEOCENTRIC
class-attribute
¶
GEOCENTRIC: Any = EllipsoidalConversionType.Geocentric
Python wrapper for EllipsoidalConversionType enum
Specifies the type of ellipsoidal conversion used in coordinate transformations.
GEODETIC
class-attribute
¶
GEODETIC: Any = EllipsoidalConversionType.Geodetic
Python wrapper for EllipsoidalConversionType enum
Specifies the type of ellipsoidal conversion used in coordinate transformations.
__doc__
class-attribute
¶
__doc__ = 'Python wrapper for EllipsoidalConversionType enum\n\nSpecifies the type of ellipsoidal conversion used in coordinate transformations.'
str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to 'utf-8'. errors defaults to 'strict'.
__module__
class-attribute
¶
str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to 'utf-8'. errors defaults to 'strict'.
Specifies the type of ellipsoidal conversion used in topocentric coordinate transformations.
Values:
- GEOCENTRIC - Uses geocentric latitude where the angle is measured from the center of the Earth
- GEODETIC - Uses geodetic latitude where the angle is measured perpendicular to the WGS84 ellipsoid
AngleFormat¶
AngleFormat
¶
Python wrapper for AngleFormat enum
Initialize instance.
__doc__
class-attribute
¶
str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to 'utf-8'. errors defaults to 'strict'.
__module__
class-attribute
¶
str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to 'utf-8'. errors defaults to 'strict'.
Specifies whether angles are in radians or degrees.
Values:
- RADIANS - Angles are in radians
- DEGREES - Angles are in degrees