CoordinateSystemConverter

A base class for type converters

converters: weakref

 

@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

 

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
  • kwargs: Any

 

register(self, where=None, check=True): 

Registers the CoordinateSystemConverter

  • :returns: _

 

__call__(self, coords, **kwargs): 

Feedback

Examples

Templates

Documentation