/dports/astro/py-astropy/astropy-5.0/astropy/io/votable/tests/ |
H A D | vo_test.py | 22 from astropy.io.votable import tree 118 votable.version = '1.1' 684 votable = VOTableFile() 691 table = Table(votable) 710 votable.to_xml(out) 832 votable = parse(fd) 843 votable = VOTableFile() 850 table = Table(votable) 1014 _timesys_tests(votable) 1022 votable = parse(bio) [all …]
|
H A D | table_test.py | 14 from astropy.io.votable.table import parse, writeto 15 from astropy.io.votable import tree, conf 16 from astropy.io.votable.exceptions import VOWarning, W39, E25 26 votable = parse(get_pkg_data_filename('data/regression.xml')) 27 table = votable.get_first_table() 115 votable = parse(fd) 127 votable = parse(fd) 195 votable = parse(get_pkg_data_filename('data/empty_table.xml')) 196 table = votable.get_first_table() 202 table = votable.get_first_table() [all …]
|
H A D | tree_test.py | 6 from astropy.io.votable.exceptions import W07, W08, W21, W41 7 from astropy.io.votable import tree 8 from astropy.io.votable.table import parse 9 from astropy.io.votable.tree import VOTableFile, Resource 28 votable = tree.VOTableFile() 31 votable.resources.append(resource) 34 table = tree.Table(votable) 38 votable, name='Test', datatype="float", unit="mag")])
|
H A D | resource_test.py | 3 from astropy.io.votable import parse 9 votable = parse(get_pkg_data_filename('data/resource_groups.xml')) 11 resource = votable.resources[0]
|
H A D | converter_test.py | 11 from astropy.io.votable import converters 12 from astropy.io.votable import exceptions 13 from astropy.io.votable import tree 15 from astropy.io.votable.table import parse_single_table 322 votable = tree.VOTableFile() 324 votable.resources.append(resource) 325 table = tree.Table(votable) 337 votable, name=heads[i], datatype=types[i], arraysize="*")) 345 votable.to_xml(buff)
|
H A D | ucd_test.py | 5 from astropy.io.votable import ucd
|
H A D | util_test.py | 7 from astropy.io.votable import util
|
H A D | exception_test.py | 5 from astropy.io.votable import converters, exceptions, tree
|
/dports/astro/py-astropy/astropy-5.0/docs/io/votable/ |
H A D | index.rst | 5 .. _astropy-io-votable: 35 `~astropy.io.votable.parse`:: 38 votable = parse("votable.xml") 40 ``votable`` is a `~astropy.io.votable.tree.VOTableFile` object, which 176 votable = VOTableFile() 183 table = Table(votable) 218 votable.to_xml('output.xml') 233 votable.to_xml('binary.xml') 235 Using `astropy.io.votable` 286 votable = parse("votable.xml", verify='warn') [all …]
|
H A D | api_exceptions.rst | 3 `astropy.io.votable.exceptions` 8 .. automodule:: astropy.io.votable.exceptions 13 .. currentmodule:: astropy.io.votable.exceptions
|
H A D | performance.inc.rst | 6 .. _astropy-io-votable-performance: 12 .. using `astropy.io.votable`.
|
/dports/www/p5-Reddit-Client/Reddit-Client-1.374/t/ |
H A D | models.t | 54 my $votable = Reddit::Client::VotableThing->new(); 56 $votable->load_from_source_data({ likes => JSON::null }); 57 ok(!defined $votable->{likes}, 'set_likes'); 59 $votable->load_from_source_data({ likes => JSON::true }); 60 ok($votable->{likes} == 1, 'set_likes'); 62 $votable->load_from_source_data({ likes => JSON::false }); 63 ok($votable->{likes} == 0, 'set_likes');
|
/dports/science/py-veusz/veusz-veusz-3.3.1/veusz/plugins/ |
H A D | votable.py | 25 from astropy.io.votable.table import parse 49 votable = self._load_votable(params) 51 for table in votable.iter_tables(): 80 votable = self._load_votable(params) 87 for table in votable.iter_tables():
|
H A D | __init__.py | 23 from .votable import *
|
/dports/astro/p5-Astro-SIMBAD-Client/Astro-SIMBAD-Client-0.046/t/ |
H A D | arcturus.vo | 1 votable myvo { 16 votable open myvo 18 votable close
|
/dports/astro/py-astropy/astropy-5.0/astropy/io/votable/ |
H A D | table.py | 178 votable = parse(source, **kwargs) 180 return votable.get_first_table() 255 votable = None 278 votable = parse(content_buffer, verify='warn', filename=filename) 322 if votable is None: 325 version = votable.version
|
H A D | tree.py | 830 self._votable = votable 1189 self._votable = votable 1568 field = cls(votable, **kwargs) 2065 votable = self._table 2067 votable = self._table._votable 2165 self._votable = votable 3014 def from_table(cls, votable, table): argument 3024 new_table = cls(votable, **kwargs) 3277 self._votable = votable 3879 votable.ID = table_id [all …]
|
/dports/astro/p5-Astro-Catalog/Astro-Catalog-4.36/lib/Astro/Catalog/IO/ |
H A D | VOTable.pm | 76 my $votable = ($doc->get_VOTABLE())[0]; 79 my $resource = ($votable->get_RESOURCE())[0]; 85 my $definitions = ( $votable->get_DEFINITIONS())[0]; 417 my $votable = ($doc->get_VOTABLE)[0]; 422 $votable->set_DESCRIPTION($description); 432 $votable->set_DEFINITIONS( $definitions ); 436 $votable->set_RESOURCE($resource);
|
/dports/astro/py-astropy/astropy-5.0/docs/samp/ |
H A D | example_table_image.rst | 51 we use ``table.load.votable``, which indicates that a VO table should be loaded 55 >>> message["samp.mtype"] = "table.load.votable" 59 ``table.load.votable`` messages using 132 methods to tell our receiver to listen to all ``table.load.votable`` messages:: 134 >>> client.bind_receive_call("table.load.votable", r.receive_call) 135 >>> client.bind_receive_notification("table.load.votable", r.receive_notification) 203 client.bind_receive_call("table.load.votable", r.receive_call) 204 client.bind_receive_notification("table.load.votable", r.receive_notification) 260 ``table.load.votable`` messages:: 280 of ``table.load.votable``. Once the URL has been received, the FITS image can
|
/dports/astro/py-astropy/astropy-5.0/docs/ |
H A D | nitpick-exceptions | 5 # astropy.io.votable 6 py:class astropy.io.votable.tree.Element 7 py:class astropy.io.votable.tree.SimpleElement 8 py:class astropy.io.votable.tree.SimpleElementWithContent
|
/dports/astro/py-astropy/astropy-5.0/astropy/table/ |
H A D | table_helpers.py | 127 from astropy.io.votable.table import parse 132 votable = parse(get_pkg_data_filename('../io/votable/tests/data/regression.xml'), 134 first_table = votable.get_first_table()
|
H A D | __init__.py | 70 import astropy.io.votable.connect
|
/dports/astro/py-astropy/astropy-5.0/.github/ |
H A D | labeler.yml | 79 io.votable: 80 - '**/io/votable/**/*'
|
/dports/astro/py-astropy/astropy-5.0/astropy/io/votable/validator/ |
H A D | result.py | 22 from astropy.io.votable import table 23 from astropy.io.votable import exceptions 24 from astropy.io.votable import xmlutil
|
/dports/astro/p5-Astro-SIMBAD-Client/Astro-SIMBAD-Client-0.046/xt/author/ |
H A D | pod_spelling.t | 54 votable
|