CoordinateSystemConverter

A base class for type converters

Properties and Methods

 

@property
types(self): 

The types property of a converter returns the types the converter converts

 

convert_many(self, coords_list, **kwargs): 

Converts many coordinates. Used in cases where a CoordinateSet has higher dimension than its basis dimension. Should be overridden by a converted to provide efficient conversions where necessary.

  • coords_list: np.ndarray

    many sets of coords

  • kwargs: Any

    No description…

 

convert(self, coords, **kwargs): 

The main necessary implementation method for a converter class. Provides the actual function that converts the coords set

  • coords: np.ndarray

    No description…

  • kwargs: Any

    No description…

 

register(self): 

Registers the CoordinateSystemConverter

  • :returns: _

    No description…

Examples


Edit Examples or Create New Examples
Edit Template or Create New Template
Edit Docstrings