SkyCoordConverter

class asdf_astropy.converters.SkyCoordConverter[source]

Bases: Converter

Attributes Summary

tags

types

Methods Summary

from_yaml_tree(node, tag, ctx)

Convert a YAML node into an instance of a custom type.

to_yaml_tree(obj, tag, ctx)

Convert an object into a node suitable for YAML serialization.

Attributes Documentation

tags = ('tag:astropy.org:astropy/coordinates/skycoord-*',)
types = ('astropy.coordinates.sky_coordinate.SkyCoord',)

Methods Documentation

from_yaml_tree(node, tag, ctx)[source]

Convert a YAML node into an instance of a custom type.

For container types received by this method (dict or list), the children of the container will have already been converted by prior calls to from_yaml_tree implementations.

Note on circular references: trees that reference themselves among their descendants must be handled with care. Most implementations need not concern themselves with this case, but if the custom type supports circular references, then the implementation of this method will need to return a generator. Consult the documentation for more details.

Parameters:
nodedict or list or str

The YAML node to convert.

tagstr

The YAML tag of the object being converted.

ctxasdf.extension.SerializationContext

The context of the current deserialization request.

Returns:
object

An instance of one of the types listed in the types property, or a generator that yields such an instance.

to_yaml_tree(obj, tag, ctx)[source]

Convert an object into a node suitable for YAML serialization. This method is not responsible for writing actual YAML; rather, it converts an instance of a custom type to a built-in Python object type (such as dict, list, str, or number), which can then be automatically serialized to YAML as needed.

For container types returned by this method (dict or list), the children of the container need not themselves be converted. Any list elements or dict values will be converted by subsequent calls to to_yaml_tree implementations.

The returned node must be an instance of dict, list, or str. Children may be any type supported by an available Converter.

Parameters:
objobject

Instance of a custom type to be serialized. Guaranteed to be an instance of one of the types listed in the types property.

tagstr

The tag identifying the YAML type that obj should be converted into. Selected by a call to this converter’s select_tag method.

ctxasdf.extension.SerializationContext

The context of the current serialization request.

Returns:
dict or list or str

The YAML node representation of the object.