Bases: astropy.io.votable.tree.Element, astropy.io.votable.tree._IDProperty, astropy.io.votable.tree._DescriptionProperty
VOTABLE element: represents an entire file.
The keyword arguments correspond to setting members of the same name, documented below.
version is settable at construction time only, since conformance tests for building the rest of the structure depend on it.
Attributes Summary
coordinate_systems | A list of coordinate system descriptions for the file. |
groups | A list of groups, in the order they appear in the file. |
infos | A list of informational parameters (key-value pairs) for the entire file. |
params | A list of parameters (constant-valued columns) that apply to the entire file. |
resources | A list of resources, in the order they appear in the file. |
version | The version of the VOTable specification that the file uses. |
Methods Summary
from_table(table[, table_id]) | Create a VOTableFile instance from a given astropy.table.Table instance. |
get_coosys_by_id(ref[, before]) | Looks up a COOSYS element by the given ID. |
get_field_by_id(ref[, before]) | Looks up a FIELD element by the given ID. |
get_field_by_id_or_name(ref[, before]) | Looks up a FIELD element by the given ID or name. |
get_fields_by_utype(ref[, before]) | Looks up a FIELD element by the given utype and returns an iterator emitting all matches. |
get_first_table() | Often, you know there is only one table in the file, and that’s all you need. |
get_group_by_id(ref[, before]) | Looks up a GROUP element by the given ID. |
get_groups_by_utype(ref[, before]) | Looks up a GROUP element by the given utype and returns an iterator emitting all matches. |
get_table_by_id(ref[, before]) | Looks up a TABLE element by the given ID. |
get_table_by_index(idx) | Get a table by its ordinal position in the file. |
get_tables_by_utype(ref[, before]) | Looks up a TABLE element by the given utype, and returns an iterator emitting all matches. |
get_values_by_id(ref[, before]) | Looks up a VALUES element by the given ID. |
iter_coosys() | Recursively iterate over all COOSYS elements in the VOTABLE file. |
iter_fields_and_params() | Recursively iterate over all FIELD and PARAM elements in the VOTABLE file. |
iter_groups() | Recursively iterate over all GROUP elements in the VOTABLE file. |
iter_tables() | Iterates over all tables in the VOTable file in a “flat” way, ignoring the nesting of resources etc. |
iter_values() | Recursively iterate over all VALUES elements in the VOTABLE file. |
parse(iterator, config) | For internal use. |
set_all_tables_format(format) | Set the output storage format of all tables in the file. |
to_xml(fd[, write_null_values, compressed, ...]) | Write to an XML file. |
Attributes Documentation
A list of coordinate system descriptions for the file. Must contain only CooSys objects.
A list of groups, in the order they appear in the file. Only supported as a child of the VOTABLE element in VOTable 1.2 or later.
A list of informational parameters (key-value pairs) for the entire file. Must only contain Info objects.
A list of parameters (constant-valued columns) that apply to the entire file. Must contain only Param objects.
A list of resources, in the order they appear in the file. Must only contain Resource objects.
The version of the VOTable specification that the file uses.
Methods Documentation
Create a VOTableFile instance from a given astropy.table.Table instance.
Parameters: | table_id : str, optional
|
---|
Looks up a COOSYS element by the given ID.
Looks up a FIELD element by the given ID. Used by the field’s “ref” attribute.
Looks up a FIELD element by the given utype and returns an iterator emitting all matches.
Often, you know there is only one table in the file, and that’s all you need. This method returns that first table.
Looks up a GROUP element by the given ID. Used by the group’s “ref” attribute
Looks up a GROUP element by the given utype and returns an iterator emitting all matches.
Looks up a TABLE element by the given ID. Used by the table “ref” attribute.
Get a table by its ordinal position in the file.
Looks up a TABLE element by the given utype, and returns an iterator emitting all matches.
Looks up a VALUES element by the given ID. Used by the values “ref” attribute.
Recursively iterate over all COOSYS elements in the VOTABLE file.
Recursively iterate over all FIELD and PARAM elements in the VOTABLE file.
Recursively iterate over all GROUP elements in the VOTABLE file.
Iterates over all tables in the VOTable file in a “flat” way, ignoring the nesting of resources etc.
Recursively iterate over all VALUES elements in the VOTABLE file.
For internal use. Parse the XML content of the children of the element.
Parameters: | iterator : xml iterator
config : dict
|
---|---|
Returns: | self : Element
|
Set the output storage format of all tables in the file.
Write to an XML file.
Parameters: | fd : str path or writable file-like object
write_null_values : bool, optional
compressed : bool, optional tabledata_format : str, optional
|
---|