Home
last modified time | relevance | path

Searched refs:votable (Results 1 – 25 of 112) sorted by relevance

12345

/dports/astro/py-astropy/astropy-5.0/astropy/io/votable/tests/
H A Dvo_test.py22 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 Dtable_test.py14 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 Dtree_test.py6 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 Dresource_test.py3 from astropy.io.votable import parse
9 votable = parse(get_pkg_data_filename('data/resource_groups.xml'))
11 resource = votable.resources[0]
H A Dconverter_test.py11 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 Ducd_test.py5 from astropy.io.votable import ucd
H A Dutil_test.py7 from astropy.io.votable import util
H A Dexception_test.py5 from astropy.io.votable import converters, exceptions, tree
/dports/astro/py-astropy/astropy-5.0/docs/io/votable/
H A Dindex.rst5 .. _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 Dapi_exceptions.rst3 `astropy.io.votable.exceptions`
8 .. automodule:: astropy.io.votable.exceptions
13 .. currentmodule:: astropy.io.votable.exceptions
H A Dperformance.inc.rst6 .. _astropy-io-votable-performance:
12 .. using `astropy.io.votable`.
/dports/www/p5-Reddit-Client/Reddit-Client-1.374/t/
H A Dmodels.t54 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 Dvotable.py25 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__.py23 from .votable import *
/dports/astro/p5-Astro-SIMBAD-Client/Astro-SIMBAD-Client-0.046/t/
H A Darcturus.vo1 votable myvo {
16 votable open myvo
18 votable close
/dports/astro/py-astropy/astropy-5.0/astropy/io/votable/
H A Dtable.py178 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 Dtree.py830 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 DVOTable.pm76 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 Dexample_table_image.rst51 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 Dnitpick-exceptions5 # 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 Dtable_helpers.py127 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__.py70 import astropy.io.votable.connect
/dports/astro/py-astropy/astropy-5.0/.github/
H A Dlabeler.yml79 io.votable:
80 - '**/io/votable/**/*'
/dports/astro/py-astropy/astropy-5.0/astropy/io/votable/validator/
H A Dresult.py22 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 Dpod_spelling.t54 votable

12345