InterpolatedDifferential¶
- class interpolated_coordinates.InterpolatedDifferential(rep: IDType | DType, *args: Any, **kwargs: Any)[source]¶
Bases:
InterpolatedBaseRepresentationOrDifferentialAttributes Summary
The class used when taking a derivative.
Return the underlying Representation.
Methods Summary
__call__([affine])Evaluate interpolated representation.
Return self, clearing cached derivatives.
copy(*args, **kwargs)Return an instance containing copies of the internal data.
derivative([n])Construct a new spline representing the derivative of this spline.
from_cartesian(other)Create a representation of this class from a Cartesian one.
represent_as(other_class, base)Convert coordinates to another representation.
Convert the differential to its Cartesian form.
Attributes Documentation
- affine¶
- derivative_type¶
The class used when taking a derivative.
- uninterpolated¶
Return the underlying Representation.
Methods Documentation
- __call__(affine: Quantity | None = None) DType[source]¶
Evaluate interpolated representation.
- Parameters:
- affine
Quantityarray_like The affine interpolation parameter. If None, returns representation points.
- affine
- Returns:
BaseDifferentialRepresentation of type
self.dataevaluated withaffine
- clear_derivatives() IRoDType¶
Return self, clearing cached derivatives.
- copy(*args: Any, **kwargs: Any) IRoDType¶
Return an instance containing copies of the internal data.
Parameters are as for
copy().- Returns:
interpolated_coordinates.InterpolatedBaseRepresentationOrDifferentialSame type as this instance.
- derivative(n: int = 1) InterpolatedDifferential¶
Construct a new spline representing the derivative of this spline.
- Parameters:
- n
int, optional Order of derivative to evaluate. Default: 1
- n
- from_cartesian(other: CartesianRepresentation | CartesianDifferential) IRoDType¶
Create a representation of this class from a Cartesian one.
- Parameters:
- other
CartesianRepresentationorCartesianDifferential The representation to turn into this class
Note: the affine parameter of this class is used. The representation must be the same length as the affine parameter.
- other
- Returns:
- representation
objectofthisclass A new representation of this class’s type.
- representation
- Raises:
ValueErrorIf
otheris not same length as the this instance’s affine parameter.
- represent_as(other_class: BaseDifferential, base: BaseRepresentation) IDType[source]¶
Convert coordinates to another representation.
If the instance is of the requested class, it is returned unmodified. By default, conversion is done via cartesian coordinates.
- Parameters:
- other_class
BaseDifferentialsubclass The type of representation to turn the coordinates into.
- baseinstance of
self.base_representation Base relative to which the differentials are defined. If the other class is a differential representation, the base will be converted to its
base_representation.
- other_class
- to_cartesian() InterpolatedCartesianRepresentation[source]¶
Convert the differential to its Cartesian form.
Note that any differentials get dropped. Also note that orientation information at the origin is not preserved by conversions through Cartesian coordinates. For example, transforming an angular position defined at distance=0 through cartesian coordinates and back will lose the original angular ccoordinates:
>>> import astropy.units as u >>> import astropy.coordinates as coord >>> rep = coord.SphericalRepresentation( ... lon=15*u.deg, ... lat=-11*u.deg, ... distance=0*u.pc) >>> rep.to_cartesian().represent_as(coord.SphericalRepresentation) <SphericalRepresentation (lon, lat, distance) in (rad, rad, pc) (0., 0., 0.)>
- Returns:
CartesianRepresentationThe representation in Cartesian form. On Differentials,
to_cartesianreturns a Representation https://github.com/astropy/astropy/issues/6215