CoordinateSystemConverters
A coordinate converter class. It’s a singleton so can’t be instantiated.
converters: OrderedDict
converter_graph: NoneType
converters_dir: str
converters_package: str
converter_type: CoordinateSystemConverter
__init__(self):
@classmethod
get_coordinates(self, coordinate_set):
Extracts coordinates from a coordinate_set
@classmethod
load_converter(self, converter):
@classmethod
get_converter(cls, system1, system2):
Gets the appropriate converter for two CoordinateSystem objects
system1:CoordinateSystemsystem2:CoordinateSystem:returns:_
@classmethod
register_converter(cls, system1, system2, converter, check=True):
Registers a converter between two coordinate systems
system1:CoordinateSystemsystem2:CoordinateSystem:returns:_