Skip to content

Coordinate Enumerations

Enumerations for specifying coordinate transformation types.

EllipsoidalConversionType

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

__module__ = 'brahe._brahe'

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'.

__eq__ method descriptor

__eq__(value)

Return self==value.

__ge__ method descriptor

__ge__(value)

Return self>=value.

__gt__ method descriptor

__gt__(value)

Return self>value.

__le__ method descriptor

__le__(value)

Return self<=value.

__lt__ method descriptor

__lt__(value)

Return self<value.

__ne__ method descriptor

__ne__(value)

Return self!=value.

__repr__ method descriptor

__repr__() -> str

Return repr(self).

__str__ method descriptor

__str__() -> str

Return str(self).

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

AngleFormat()

Python wrapper for AngleFormat enum

Initialize instance.

DEGREES class-attribute

DEGREES: Any = AngleFormat.Degrees

Python wrapper for AngleFormat enum

RADIANS class-attribute

RADIANS: Any = AngleFormat.Radians

Python wrapper for AngleFormat enum

__doc__ class-attribute

__doc__ = 'Python wrapper for AngleFormat enum'

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

__module__ = 'brahe._brahe'

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'.

__eq__ method descriptor

__eq__(value)

Return self==value.

__ge__ method descriptor

__ge__(value)

Return self>=value.

__gt__ method descriptor

__gt__(value)

Return self>value.

__le__ method descriptor

__le__(value)

Return self<=value.

__lt__ method descriptor

__lt__(value)

Return self<value.

__ne__ method descriptor

__ne__(value)

Return self!=value.

__repr__ method descriptor

__repr__() -> str

Return repr(self).

__str__ method descriptor

__str__() -> str

Return str(self).

Specifies whether angles are in radians or degrees.

Values: - RADIANS - Angles are in radians - DEGREES - Angles are in degrees

See Also