voruby 1.1.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile.rb +107 -224
- data/lib/misc.rb +1 -0
- data/lib/misc/misc.rb +60 -0
- data/lib/misc/propertyfile.rb +31 -0
- data/lib/symphony.rb +1 -0
- data/lib/symphony/symphony.rb +247 -0
- data/lib/voruby.rb +186 -0
- data/lib/voruby/active_votable/active_votable.rb +468 -347
- data/lib/voruby/adql/1.0/adql.rb +2418 -0
- data/lib/voruby/adql/support.rb +2 -0
- data/lib/voruby/misc.rb +351 -0
- data/lib/voruby/misc/connection_monitor.rb +97 -0
- data/lib/voruby/misc/libxml_ext.rb +121 -0
- data/lib/voruby/misc/rexml_ext.rb +223 -0
- data/lib/voruby/resolver/resolver.rb +12 -0
- data/lib/voruby/resolver/sesame.rb +299 -0
- data/lib/voruby/sky_query/sky_query.rb +192 -0
- data/lib/voruby/stc/1.10/coords.rb +2272 -0
- data/lib/voruby/stc/1.10/region.rb +892 -0
- data/lib/voruby/stc/1.10/stc.rb +3271 -0
- data/lib/voruby/stc/1.30/stc.rb +8666 -0
- data/lib/voruby/stc/support.rb +2 -0
- data/lib/voruby/ucd/ucd.rb +173 -0
- data/lib/voruby/voevent/1.1/voevent.rb +1124 -0
- data/lib/voruby/voevent/support.rb +5 -0
- data/lib/voruby/votable/1.0/votable.rb +1807 -0
- data/lib/voruby/votable/1.1/votable.rb +2100 -0
- data/lib/voruby/votable/votable.rb +305 -0
- data/lib/voruby/wesix/wesix.rb +491 -0
- data/lib/voruby/xlink/1.2/xlink.rb +21 -0
- data/test/voruby/active_votable/complex.vot +60 -0
- data/test/voruby/active_votable/error.vot +6 -0
- data/test/voruby/active_votable/large.vot +130040 -0
- data/test/voruby/active_votable/simple1.vot +38 -0
- data/test/voruby/active_votable/simple2.vot +38 -0
- data/test/voruby/active_votable/test.rb +193 -0
- data/test/voruby/adql/1.0/adql-alias.sql +1 -0
- data/test/voruby/adql/1.0/adql-alias.xml +26 -0
- data/test/voruby/adql/1.0/adql-avg.sql +1 -0
- data/test/voruby/adql/1.0/adql-avg.xml +31 -0
- data/test/voruby/adql/1.0/adql-circle.sql +1 -0
- data/test/voruby/adql/1.0/adql-circle.xml +46 -0
- data/test/voruby/adql/1.0/adql-expr.sql +1 -0
- data/test/voruby/adql/1.0/adql-expr.xml +34 -0
- data/test/voruby/adql/1.0/adql-function.sql +1 -0
- data/test/voruby/adql/1.0/adql-function.xml +41 -0
- data/test/voruby/adql/1.0/adql-group.sql +1 -0
- data/test/voruby/adql/1.0/adql-group.xml +51 -0
- data/test/voruby/adql/1.0/adql-having.sql +1 -0
- data/test/voruby/adql/1.0/adql-having.xml +25 -0
- data/test/voruby/adql/1.0/adql-like.sql +1 -0
- data/test/voruby/adql/1.0/adql-like.xml +17 -0
- data/test/voruby/adql/1.0/adql-order.sql +1 -0
- data/test/voruby/adql/1.0/adql-order.xml +37 -0
- data/test/voruby/adql/1.0/adql-simple.sql +1 -0
- data/test/voruby/adql/1.0/adql-simple.xml +12 -0
- data/test/voruby/adql/1.0/adql-top.sql +1 -0
- data/test/voruby/adql/1.0/adql-top.xml +33 -0
- data/test/voruby/adql/1.0/test.rb +2220 -0
- data/test/voruby/misc/test.rb +32 -0
- data/test/voruby/resolver/sesame/test.rb +56 -0
- data/test/voruby/sky_query/test.rb +107 -0
- data/test/voruby/stc/1.10/coords_test.rb +3704 -0
- data/test/voruby/stc/1.10/region_test.rb +993 -0
- data/test/voruby/stc/1.10/stc-catalog-entry-location.xml +112 -0
- data/test/voruby/stc/1.10/stc-obs-data-location.xml +126 -0
- data/test/voruby/stc/1.10/stc-region-circle.xml +5 -0
- data/test/voruby/stc/1.10/stc-region-convex.xml +11 -0
- data/test/voruby/stc/1.10/stc-region-convexhull.xml +5 -0
- data/test/voruby/stc/1.10/stc-region-ellipse.xml +7 -0
- data/test/voruby/stc/1.10/stc-region-intersection.xml +25 -0
- data/test/voruby/stc/1.10/stc-region-negation.xml +7 -0
- data/test/voruby/stc/1.10/stc-region-polygon.xml +13 -0
- data/test/voruby/stc/1.10/stc-region-sector.xml +6 -0
- data/test/voruby/stc/1.10/stc-region-union.xml +25 -0
- data/test/voruby/stc/1.10/stc-resource-profile.xml +60 -0
- data/test/voruby/stc/1.10/stc-search-location.xml +54 -0
- data/test/voruby/stc/1.10/stc_test.rb +4626 -0
- data/test/voruby/stc/1.30/stc-catalog-entry-location.xml +210 -0
- data/test/voruby/stc/1.30/stc-obs-data-location-arecibo.xml +353 -0
- data/test/voruby/stc/1.30/stc-obs-data-location-fits.xml +250 -0
- data/test/voruby/stc/1.30/stc-obs-data-location-xlink.xml +63 -0
- data/test/voruby/stc/1.30/stc-obs-data-location.xml +216 -0
- data/test/voruby/stc/1.30/stc-resource-profile-unusual-ref-pos.xml +39 -0
- data/test/voruby/stc/1.30/stc-resource-profile.xml +129 -0
- data/test/voruby/stc/1.30/stc-search-location-arecibo.xml +86 -0
- data/test/voruby/stc/1.30/stc-search-location.xml +101 -0
- data/test/voruby/stc/1.30/test.rb +6274 -0
- data/test/voruby/ucd/test.rb +48 -0
- data/test/voruby/voevent/1.1/test.rb +812 -0
- data/test/{voevent/voevent_v1_1.xml → voruby/voevent/1.1/voevent.xml} +2 -2
- data/test/voruby/voregistry/0.3/test.rb +137 -0
- data/test/voruby/votable/1.0/test.rb +714 -0
- data/test/voruby/votable/1.0/votable.basic.xml +660 -0
- data/test/voruby/votable/1.0/votable.html +86 -0
- data/test/voruby/votable/1.0/votable.ns.xml +56 -0
- data/test/voruby/votable/1.1/test.rb +785 -0
- data/test/voruby/votable/1.1/votable.basic.xml +38 -0
- data/test/voruby/votable/1.1/votable.html +86 -0
- data/test/voruby/votable/1.1/votable.ns.xml +56 -0
- data/test/voruby/votable/test.rb +15 -0
- data/test/voruby/wesix/test.rb +268 -0
- data/test/voruby/wesix/testr.fits +28 -0
- metadata +234 -247
- data/REQUIREMENTS +0 -6
- data/lib/voruby/active_votable/loader.rb +0 -5
- data/lib/voruby/adql/adql.rb +0 -2787
- data/lib/voruby/adql/ext.rb +0 -14
- data/lib/voruby/adql/loader.rb +0 -6
- data/lib/voruby/adql/operations.rb +0 -54
- data/lib/voruby/adql/parser.rb +0 -160
- data/lib/voruby/adql/transforms.rb +0 -573
- data/lib/voruby/ext.rb +0 -17
- data/lib/voruby/loader.rb +0 -4
- data/lib/voruby/misc/propertyfile.rb +0 -36
- data/lib/voruby/plastic/applications.rb +0 -174
- data/lib/voruby/plastic/constants.rb +0 -30
- data/lib/voruby/plastic/loader.rb +0 -10
- data/lib/voruby/plastic/plastic.rb +0 -1
- data/lib/voruby/resources/conesearch/conesearch.rb +0 -9
- data/lib/voruby/resources/conesearch/conesearch_v0_2.rb +0 -55
- data/lib/voruby/resources/conesearch/conesearch_v0_3.rb +0 -50
- data/lib/voruby/resources/conesearch/conesearch_v1_0.rb +0 -72
- data/lib/voruby/resources/conesearch/loader.rb +0 -4
- data/lib/voruby/resources/loader.rb +0 -50
- data/lib/voruby/resources/nodes.rb +0 -190
- data/lib/voruby/resources/openskynode/loader.rb +0 -4
- data/lib/voruby/resources/openskynode/openskynode.rb +0 -9
- data/lib/voruby/resources/openskynode/openskynode_v0_1.rb +0 -54
- data/lib/voruby/resources/sia/loader.rb +0 -5
- data/lib/voruby/resources/sia/sia.rb +0 -9
- data/lib/voruby/resources/sia/sia_v0_6.rb +0 -90
- data/lib/voruby/resources/sia/sia_v0_7.rb +0 -89
- data/lib/voruby/resources/sia/sia_v1_0.rb +0 -122
- data/lib/voruby/resources/stsci.rb +0 -59
- data/lib/voruby/resources/vodataservice/coverage_v0_2.rb +0 -195
- data/lib/voruby/resources/vodataservice/coverage_v0_3.rb +0 -158
- data/lib/voruby/resources/vodataservice/loader.rb +0 -5
- data/lib/voruby/resources/vodataservice/vodataservice.rb +0 -9
- data/lib/voruby/resources/vodataservice/vodataservice_v0_4.rb +0 -189
- data/lib/voruby/resources/vodataservice/vodataservice_v0_5.rb +0 -163
- data/lib/voruby/resources/vodataservice/vodataservice_v1_0.rb +0 -221
- data/lib/voruby/resources/voregistry/loader.rb +0 -4
- data/lib/voruby/resources/voregistry/voregistry.rb +0 -9
- data/lib/voruby/resources/voregistry/voregistry_v0_2.rb +0 -40
- data/lib/voruby/resources/voregistry/voregistry_v0_3.rb +0 -30
- data/lib/voruby/resources/voregistry/voregistry_v1_0.rb +0 -86
- data/lib/voruby/resources/voresource/loader.rb +0 -17
- data/lib/voruby/resources/voresource/voresource.rb +0 -9
- data/lib/voruby/resources/voresource/voresource_v0_10.rb +0 -327
- data/lib/voruby/resources/voresource/voresource_v0_9.rb +0 -405
- data/lib/voruby/resources/voresource/voresource_v1_0.rb +0 -230
- data/lib/voruby/services/ext.rb +0 -11
- data/lib/voruby/services/gestalt/footprint.rb +0 -95
- data/lib/voruby/services/gestalt/wcs_fixer.rb +0 -105
- data/lib/voruby/services/gestalt/wesix.rb +0 -155
- data/lib/voruby/services/loader.rb +0 -7
- data/lib/voruby/services/registry/registry.rb +0 -53
- data/lib/voruby/services/resolver/resolver.rb +0 -35
- data/lib/voruby/services/schema/schema.rb +0 -644
- data/lib/voruby/sesame/loader.rb +0 -6
- data/lib/voruby/sesame/sesame_v1_0.rb +0 -64
- data/lib/voruby/simple/loader.rb +0 -6
- data/lib/voruby/simple/parameters.rb +0 -196
- data/lib/voruby/simple/sap.rb +0 -446
- data/lib/voruby/spacetime/loader.rb +0 -3
- data/lib/voruby/spacetime/spacetime.rb +0 -607
- data/lib/voruby/stc/coords_v1_20.rb +0 -900
- data/lib/voruby/stc/loader.rb +0 -55
- data/lib/voruby/stc/region_v1_20.rb +0 -274
- data/lib/voruby/stc/stc_v1_20.rb +0 -1196
- data/lib/voruby/util.rb +0 -27
- data/lib/voruby/voevent/loader.rb +0 -7
- data/lib/voruby/voevent/voevent_v1_0.rb +0 -213
- data/lib/voruby/voevent/voevent_v1_1.rb +0 -196
- data/lib/voruby/votables/chandra.rb +0 -373
- data/lib/voruby/votables/data.rb +0 -179
- data/lib/voruby/votables/galex.rb +0 -377
- data/lib/voruby/votables/int.rb +0 -354
- data/lib/voruby/votables/libxml_parser.rb +0 -411
- data/lib/voruby/votables/libxml_votable.rb +0 -67
- data/lib/voruby/votables/loader.rb +0 -10
- data/lib/voruby/votables/meta.rb +0 -763
- data/lib/voruby/votables/misc.rb +0 -51
- data/lib/voruby/votables/nsa.rb +0 -410
- data/lib/voruby/votables/rexml_parser.rb +0 -408
- data/lib/voruby/votables/rexml_votable.rb +0 -67
- data/lib/voruby/votables/sdss.rb +0 -356
- data/lib/voruby/votables/transforms.rb +0 -388
- data/lib/voruby/votables/tree.rb +0 -45
- data/lib/voruby/votables/types.rb +0 -391
- data/lib/voruby/votables/votable.rb +0 -687
- data/test/active_votable/database.yml +0 -6
- data/test/active_votable/test.vot +0 -168492
- data/test/active_votable/unittest.rb +0 -41
- data/test/adql/test1.adql +0 -49
- data/test/adql/test2.adql +0 -51
- data/test/adql/test3.adql +0 -81
- data/test/adql/test4.adql +0 -53
- data/test/adql/test5.adql +0 -55
- data/test/adql/test6.adql +0 -18
- data/test/adql/test7.adql +0 -48
- data/test/adql/unittest.rb +0 -1672
- data/test/plastic/test.rb +0 -44
- data/test/plastic/test.vot +0 -5385
- data/test/plastic/unittest.rb +0 -66
- data/test/resources/conesearch/conesearch_v0_3.xml +0 -31
- data/test/resources/conesearch/conesearch_v1_0.xml +0 -86
- data/test/resources/conesearch/unittest_v0_3.rb +0 -22
- data/test/resources/conesearch/unittest_v1_0.rb +0 -24
- data/test/resources/openskynode/open_sky_node_v0_1.xml +0 -32
- data/test/resources/openskynode/unittest_v0_1.rb +0 -31
- data/test/resources/sia/simple_image_access_v0_7.xml +0 -36
- data/test/resources/sia/simple_image_access_v1_0.xml +0 -122
- data/test/resources/sia/unittest_v0_7.rb +0 -24
- data/test/resources/sia/unittest_v1_0.rb +0 -29
- data/test/resources/stsci.xml +0 -336
- data/test/resources/unittest_stsci.rb +0 -25
- data/test/resources/vodataservice/catalog_service_resource_v1_0.xml +0 -128
- data/test/resources/vodataservice/data_collection_resource_v0_5.xml +0 -54
- data/test/resources/vodataservice/data_collection_resource_v1_0.xml +0 -117
- data/test/resources/vodataservice/data_service_resource_v1_0.xml +0 -115
- data/test/resources/vodataservice/sky_service_resource_v0_10.xml +0 -45
- data/test/resources/vodataservice/table_service_resource_v1_0.xml +0 -122
- data/test/resources/vodataservice/tabular_sky_service_resource_v0_10.xml +0 -60
- data/test/resources/vodataservice/unittest_v0_5.rb +0 -126
- data/test/resources/vodataservice/unittest_v1_0.rb +0 -151
- data/test/resources/voregistry/authority_resource_v0_3.xml +0 -20
- data/test/resources/voregistry/authority_resource_v1_0.xml +0 -82
- data/test/resources/voregistry/registry_service_v0_3.xml +0 -20
- data/test/resources/voregistry/registry_service_v1_0.xml +0 -107
- data/test/resources/voregistry/unittest_v0_3.rb +0 -31
- data/test/resources/voregistry/unittest_v1_0.rb +0 -34
- data/test/resources/voresource/organisation_resource_v1_0.xml +0 -90
- data/test/resources/voresource/resource_organisation_v0_10.xml +0 -22
- data/test/resources/voresource/resource_service_v0_10.xml +0 -19
- data/test/resources/voresource/resource_v0_10.xml +0 -19
- data/test/resources/voresource/resource_v1_0.xml +0 -79
- data/test/resources/voresource/service_resource_v1_0.xml +0 -91
- data/test/resources/voresource/unittest_v0_10.rb +0 -61
- data/test/resources/voresource/unittest_v0_9.rb +0 -4
- data/test/resources/voresource/unittest_v1_0.rb +0 -190
- data/test/services/gestalt/unittest.rb +0 -74
- data/test/services/registry/unittest.rb +0 -34
- data/test/services/resolver/unittest.rb +0 -38
- data/test/simple/unittest.rb +0 -46
- data/test/spacetime/unittest.rb +0 -39
- data/test/stc/catalog_entry_location_v1_20.xml +0 -112
- data/test/stc/obs_data_location_v1_20.xml +0 -108
- data/test/stc/search_location_v1_20.xml +0 -54
- data/test/stc/stc_resource_profile_v1_20.xml +0 -60
- data/test/stc/unittest_v1_20.rb +0 -620
- data/test/voevent/unittest_v1_0.rb +0 -79
- data/test/voevent/unittest_v1_1.rb +0 -70
- data/test/voevent/voevent_v1_0.xml +0 -96
- data/test/votables/test.vot +0 -366
- data/test/votables/unittest.rb +0 -54
@@ -0,0 +1,112 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<CatalogEntryLocation xmlns="http://www.ivoa.net/xml/STC/stc-v1.10.xsd" xmlns:crd="http://www.ivoa.net/xml/STC/STCcoords/v1.10" xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.ivoa.net/xml/STC/stc-v1.10.xsd stc-v1.10.xsd">
|
3
|
+
<AstroCoordSystem ID="B1950-OPTICAL-ET">
|
4
|
+
<TimeFrame>
|
5
|
+
<Name>Time</Name>
|
6
|
+
<TimeScale>ET</TimeScale>
|
7
|
+
<TOPOCENTER/>
|
8
|
+
</TimeFrame>
|
9
|
+
<SpaceFrame>
|
10
|
+
<Name>PosEq</Name>
|
11
|
+
<FK4>
|
12
|
+
<Equinox>B1950.0</Equinox>
|
13
|
+
</FK4>
|
14
|
+
<BARYCENTER/>
|
15
|
+
<SPHERICAL coord_naxes="2" coord_vel="true"/>
|
16
|
+
</SpaceFrame>
|
17
|
+
<SpectralFrame>
|
18
|
+
<Name>Optical</Name>
|
19
|
+
<TOPOCENTER/>
|
20
|
+
</SpectralFrame>
|
21
|
+
<RedshiftFrame>
|
22
|
+
<Name>DopplerVelocity</Name>
|
23
|
+
<DopplerDefinition>OPTICAL</DopplerDefinition>
|
24
|
+
<BARYCENTER/>
|
25
|
+
</RedshiftFrame>
|
26
|
+
</AstroCoordSystem>
|
27
|
+
<AstroCoordSystem ID="SGC-OPTICAL-ET">
|
28
|
+
<TimeFrame>
|
29
|
+
<Name>Time</Name>
|
30
|
+
<TimeScale>ET</TimeScale>
|
31
|
+
<TOPOCENTER/>
|
32
|
+
</TimeFrame>
|
33
|
+
<SpaceFrame>
|
34
|
+
<Name>SGC</Name>
|
35
|
+
<SUPER_GALACTIC/>
|
36
|
+
<BARYCENTER/>
|
37
|
+
<SPHERICAL coord_naxes="2" coord_vel="true"/>
|
38
|
+
</SpaceFrame>
|
39
|
+
<SpectralFrame>
|
40
|
+
<Name>Optical</Name>
|
41
|
+
<TOPOCENTER/>
|
42
|
+
</SpectralFrame>
|
43
|
+
<RedshiftFrame>
|
44
|
+
<Name>DopplerVelocity</Name>
|
45
|
+
<DopplerDefinition>OPTICAL</DopplerDefinition>
|
46
|
+
<GALACTIC_CENTER/>
|
47
|
+
</RedshiftFrame>
|
48
|
+
</AstroCoordSystem>
|
49
|
+
<crd:AstroCoords coord_system_id="B1950-OPTICAL-ET">
|
50
|
+
<crd:Position2D unit="deg">
|
51
|
+
<crd:Name>RA,Dec</crd:Name>
|
52
|
+
<crd:Value2Ref>Column3</crd:Value2Ref>
|
53
|
+
<crd:Error2Ref>Column4</crd:Error2Ref>
|
54
|
+
<crd:Size2Ref>Column5</crd:Size2Ref>
|
55
|
+
</crd:Position2D>
|
56
|
+
<crd:Redshift unit="km" vel_time_unit="s">
|
57
|
+
<crd:Name>Vrad(barycenter)</crd:Name>
|
58
|
+
<crd:ValueRef>Column6</crd:ValueRef>
|
59
|
+
<crd:ErrorRef>Column7</crd:ErrorRef>
|
60
|
+
</crd:Redshift>
|
61
|
+
</crd:AstroCoords>
|
62
|
+
<crd:AstroCoords coord_system_id="SGC-OPTICAL-ET">
|
63
|
+
<crd:Position2D unit="deg">
|
64
|
+
<crd:Name>SGLong,SGLat</crd:Name>
|
65
|
+
<crd:Value2Ref>Column8</crd:Value2Ref>
|
66
|
+
<crd:Error2Ref>Column9</crd:Error2Ref>
|
67
|
+
<crd:Size2Ref>Column10</crd:Size2Ref>
|
68
|
+
</crd:Position2D>
|
69
|
+
<crd:Redshift unit="km" vel_time_unit="s">
|
70
|
+
<crd:Name>Vrad(Galcenter)</crd:Name>
|
71
|
+
<crd:ValueRef>Column11</crd:ValueRef>
|
72
|
+
<crd:ErrorRef>Column12</crd:ErrorRef>
|
73
|
+
</crd:Redshift>
|
74
|
+
</crd:AstroCoords>
|
75
|
+
<AstroCoordArea coord_system_id="B1950-OPTICAL-ET" ID="RA6-18hDec20-70deg">
|
76
|
+
<TimeInterval>
|
77
|
+
<StartTime>
|
78
|
+
<crd:Timescale>ET</crd:Timescale>
|
79
|
+
<crd:JDTime>2440000</crd:JDTime>
|
80
|
+
</StartTime>
|
81
|
+
<StopTime>
|
82
|
+
<crd:Timescale>ET</crd:Timescale>
|
83
|
+
<crd:JDTime>2441000</crd:JDTime>
|
84
|
+
</StopTime>
|
85
|
+
</TimeInterval>
|
86
|
+
<Region>
|
87
|
+
<reg:Polygon coord_system_id="B1950-OPTICAL-ET" unit="deg">
|
88
|
+
<reg:Vertex>
|
89
|
+
<reg:Position>270 20</reg:Position>
|
90
|
+
</reg:Vertex>
|
91
|
+
<reg:Vertex>
|
92
|
+
<reg:Position>90 20</reg:Position>
|
93
|
+
<reg:SmallCircle/>
|
94
|
+
</reg:Vertex>
|
95
|
+
<reg:Vertex>
|
96
|
+
<reg:Position>90 70</reg:Position>
|
97
|
+
</reg:Vertex>
|
98
|
+
<reg:Vertex>
|
99
|
+
<reg:Position>270 70</reg:Position>
|
100
|
+
</reg:Vertex>
|
101
|
+
</reg:Polygon>
|
102
|
+
</Region>
|
103
|
+
<SpectralInterval unit="A">
|
104
|
+
<LoLimit>5000</LoLimit>
|
105
|
+
<HiLimit>6500</HiLimit>
|
106
|
+
</SpectralInterval>
|
107
|
+
<RedshiftInterval unit="km" vel_time_unit="s">
|
108
|
+
<HiLimit>10000</HiLimit>
|
109
|
+
</RedshiftInterval>
|
110
|
+
</AstroCoordArea>
|
111
|
+
</CatalogEntryLocation>
|
112
|
+
|
@@ -0,0 +1,126 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ObsDataLocation xmlns="http://www.ivoa.net/xml/STC/stc-v1.10.xsd" xmlns:crd="http://www.ivoa.net/xml/STC/STCcoords/v1.10" xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.ivoa.net/xml/STC/stc-v1.10.xsd stc-v1.10.xsd">
|
3
|
+
<ObservatoryLocation ID="ROSAT">
|
4
|
+
<AstroCoordSystem ID="FK5-UTC-VEL">
|
5
|
+
<TimeFrame>
|
6
|
+
<Name>Time</Name>
|
7
|
+
<TimeScale>UTC</TimeScale>
|
8
|
+
<TOPOCENTER/>
|
9
|
+
</TimeFrame>
|
10
|
+
<SpaceFrame>
|
11
|
+
<Name>FK5Cart+Vel</Name>
|
12
|
+
<FK5>
|
13
|
+
<Equinox>J2000.0</Equinox>
|
14
|
+
</FK5>
|
15
|
+
<TOPOCENTER/>
|
16
|
+
<CARTESIAN coord_naxes="3" coord_vel="true"/>
|
17
|
+
</SpaceFrame>
|
18
|
+
</AstroCoordSystem>
|
19
|
+
<crd:AstroCoords coord_system_id="FK5-UTC-VEL">
|
20
|
+
<crd:CoordFile>
|
21
|
+
<crd:FITSFile hdu_num="1">http://MySpace.edu/OrbitEphemeris.fits</crd:FITSFile>
|
22
|
+
<crd:FITSTime>
|
23
|
+
<crd:Name>Time</crd:Name>
|
24
|
+
<crd:Value>TIME</crd:Value>
|
25
|
+
</crd:FITSTime>
|
26
|
+
<crd:FITSPosition>
|
27
|
+
<crd:Name>Position</crd:Name>
|
28
|
+
<crd:Value>X,Y,Z</crd:Value>
|
29
|
+
</crd:FITSPosition>
|
30
|
+
<crd:FITSVelocity>
|
31
|
+
<crd:Name>Velocity</crd:Name>
|
32
|
+
<crd:Value>VX,VY,VZ</crd:Value>
|
33
|
+
</crd:FITSVelocity>
|
34
|
+
</crd:CoordFile>
|
35
|
+
</crd:AstroCoords>
|
36
|
+
</ObservatoryLocation>
|
37
|
+
<ObservationLocation ID="US701411P.N1">
|
38
|
+
<AstroCoordSystem ID="FK5-UTC-Energy">
|
39
|
+
<TimeFrame>
|
40
|
+
<Name>TimeUTC</Name>
|
41
|
+
<TimeScale>UTC</TimeScale>
|
42
|
+
<TOPOCENTER/>
|
43
|
+
</TimeFrame>
|
44
|
+
<SpaceFrame>
|
45
|
+
<Name>FK5Spher</Name>
|
46
|
+
<FK5>
|
47
|
+
<Equinox>J2000.0</Equinox>
|
48
|
+
</FK5>
|
49
|
+
<TOPOCENTER/>
|
50
|
+
<SPHERICAL coord_naxes="2"/>
|
51
|
+
</SpaceFrame>
|
52
|
+
<SpectralFrame>
|
53
|
+
<Name>Energy</Name>
|
54
|
+
<TOPOCENTER/>
|
55
|
+
</SpectralFrame>
|
56
|
+
</AstroCoordSystem>
|
57
|
+
<crd:AstroCoords coord_system_id="FK5-UTC-Energy">
|
58
|
+
<crd:Time unit="s">
|
59
|
+
<crd:Name>Time</crd:Name>
|
60
|
+
<crd:TimeInstant>
|
61
|
+
<crd:Timescale>UTC</crd:Timescale>
|
62
|
+
<crd:MJDTime>49192.57</crd:MJDTime>
|
63
|
+
</crd:TimeInstant>
|
64
|
+
<crd:Error>0.1</crd:Error>
|
65
|
+
<crd:Resolution>22955</crd:Resolution>
|
66
|
+
<crd:PixSize>22955</crd:PixSize>
|
67
|
+
</crd:Time>
|
68
|
+
<crd:Position2D unit="deg">
|
69
|
+
<crd:Name>RA,Dec</crd:Name>
|
70
|
+
<crd:Value2>233.73 23.49</crd:Value2>
|
71
|
+
<crd:Error2>0.005 0.005</crd:Error2>
|
72
|
+
<crd:Resolution2>0.01 0.01</crd:Resolution2>
|
73
|
+
<crd:PixSize2>0.0041667 0.0041667</crd:PixSize2>
|
74
|
+
</crd:Position2D>
|
75
|
+
<crd:Spectral unit="keV">
|
76
|
+
<crd:Name>Energy</crd:Name>
|
77
|
+
<crd:Value>1.0</crd:Value>
|
78
|
+
<crd:Error>0.1</crd:Error>
|
79
|
+
<crd:Resolution>2.3</crd:Resolution>
|
80
|
+
<crd:PixSize>2.3</crd:PixSize>
|
81
|
+
</crd:Spectral>
|
82
|
+
</crd:AstroCoords>
|
83
|
+
<AstroCoordArea ID="ROSATFIELD" coord_system_id="FK5-UTC-Energy">
|
84
|
+
<TimeInterval fill_factor="0.025">
|
85
|
+
<StartTime>
|
86
|
+
<crd:Timescale>UTC</crd:Timescale>
|
87
|
+
<crd:ISOTime>1993-07-24T13:47:39</crd:ISOTime>
|
88
|
+
</StartTime>
|
89
|
+
<StopTime>
|
90
|
+
<crd:Timescale>UTC</crd:Timescale>
|
91
|
+
<crd:ISOTime>1993-08-03T21:17:42</crd:ISOTime>
|
92
|
+
</StopTime>
|
93
|
+
</TimeInterval>
|
94
|
+
<Region>
|
95
|
+
<reg:Circle coord_system_id="FK5-UTC-Energy" unit="deg">
|
96
|
+
<reg:Center>233.73 23.49</reg:Center>
|
97
|
+
<reg:Radius>1.0</reg:Radius>
|
98
|
+
</reg:Circle>
|
99
|
+
</Region>
|
100
|
+
<SpectralInterval unit="keV">
|
101
|
+
<LoLimit>0.1</LoLimit>
|
102
|
+
<HiLimit>2.4</HiLimit>
|
103
|
+
</SpectralInterval>
|
104
|
+
</AstroCoordArea>
|
105
|
+
</ObservationLocation>
|
106
|
+
<PixelSpace>
|
107
|
+
<PixelCoordSystem ID="US701411P.N1Pix">
|
108
|
+
<PixelCoordFrame>
|
109
|
+
<Name>X</Name>
|
110
|
+
</PixelCoordFrame>
|
111
|
+
<PixelCoordFrame>
|
112
|
+
<Name>Y</Name>
|
113
|
+
</PixelCoordFrame>
|
114
|
+
</PixelCoordSystem>
|
115
|
+
<PixelCoordArea coord_system_id="US701411P.N1Pix" ID="US701411P.N1PixImage">
|
116
|
+
<CoordScalarInterval fill_factor="0.9">
|
117
|
+
<LoLimit>1</LoLimit>
|
118
|
+
<HiLimit>1024</HiLimit>
|
119
|
+
</CoordScalarInterval>
|
120
|
+
<CoordScalarInterval fill_factor="0.9">
|
121
|
+
<LoLimit>1</LoLimit>
|
122
|
+
<HiLimit>1024</HiLimit>
|
123
|
+
</CoordScalarInterval>
|
124
|
+
</PixelCoordArea>
|
125
|
+
</PixelSpace>
|
126
|
+
</ObsDataLocation>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<Region xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ivoa.net/xml/STC/STCregion/v1.10"
|
2
|
+
xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xsi:type="reg:circleType" coord_system_id="J2000" unit="arcmin">
|
3
|
+
<Center>65.0 73.2</Center>
|
4
|
+
<Radius>34.1</Radius>
|
5
|
+
</Region>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<Region xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ivoa.net/xml/STC/STCregion/v1.10"
|
2
|
+
xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xsi:type="reg:convexType" coord_system_id="J2000" unit="deg">
|
3
|
+
<Constraint>
|
4
|
+
<Vector>1.0 2.0 3.0</Vector>
|
5
|
+
<Offset>1.1</Offset>
|
6
|
+
</Constraint>
|
7
|
+
<Constraint>
|
8
|
+
<Vector>4.0 5.0 6.0</Vector>
|
9
|
+
<Offset>2.2</Offset>
|
10
|
+
</Constraint>
|
11
|
+
</Region>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<Region xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ivoa.net/xml/STC/STCregion/v1.10"
|
2
|
+
xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xsi:type="reg:convexHullType" coord_system_id="J2000" unit="deg">
|
3
|
+
<Point>1.1 2.2 3.3</Point>
|
4
|
+
<Point>4.4 5.5 6.6</Point>
|
5
|
+
</Region>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<Region xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ivoa.net/xml/STC/STCregion/v1.10"
|
2
|
+
xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xsi:type="reg:ellipseType" coord_system_id="J2000" unit="rad" pos_angle_unit="rad">
|
3
|
+
<Center>7.2 5.1</Center>
|
4
|
+
<Radius>34.1</Radius>
|
5
|
+
<MinorRadius>6.2</MinorRadius>
|
6
|
+
<PosAngle>10.2</PosAngle>
|
7
|
+
</Region>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<Region xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ivoa.net/xml/STC/STCregion/v1.10"
|
2
|
+
xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xsi:type="reg:intersectionType">
|
3
|
+
<Circle coord_system_id="J2000" unit="deg">
|
4
|
+
<Center>7.2 5.1</Center>
|
5
|
+
<Radius>1.0</Radius>
|
6
|
+
</Circle>
|
7
|
+
<Ellipse coord_system_id="J2000" unit="deg" pos_angle_unit="deg">
|
8
|
+
<Center>7.2 5.1</Center>
|
9
|
+
<Radius>1.0</Radius>
|
10
|
+
<MinorRadius>0.5</MinorRadius>
|
11
|
+
<PosAngle>10.2</PosAngle>
|
12
|
+
</Ellipse>
|
13
|
+
<Polygon coord_system_id="J2000" unit="deg">
|
14
|
+
<Vertex>
|
15
|
+
<Position>1.1 2.2</Position>
|
16
|
+
</Vertex>
|
17
|
+
<Vertex>
|
18
|
+
<Position>2.2 3.3</Position>
|
19
|
+
<SmallCircle/>
|
20
|
+
</Vertex>
|
21
|
+
<Vertex>
|
22
|
+
<Position>3.3 4.4</Position>
|
23
|
+
</Vertex>
|
24
|
+
</Polygon>
|
25
|
+
</Region>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<Region xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ivoa.net/xml/STC/STCregion/v1.10"
|
2
|
+
xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xsi:type="reg:negationType">
|
3
|
+
<Circle coord_system_id="J2000" unit="deg">
|
4
|
+
<Center>7.2 5.1</Center>
|
5
|
+
<Radius>1.0</Radius>
|
6
|
+
</Circle>
|
7
|
+
</Region>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<Region xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ivoa.net/xml/STC/STCregion/v1.10"
|
2
|
+
xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xsi:type="reg:polygonType" coord_system_id="J2000" unit="deg">
|
3
|
+
<Vertex>
|
4
|
+
<Position>1.1 2.2</Position>
|
5
|
+
</Vertex>
|
6
|
+
<Vertex>
|
7
|
+
<Position>2.2 3.3</Position>
|
8
|
+
<SmallCircle/>
|
9
|
+
</Vertex>
|
10
|
+
<Vertex>
|
11
|
+
<Position>3.3 4.4</Position>
|
12
|
+
</Vertex>
|
13
|
+
</Region>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<Region xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ivoa.net/xml/STC/STCregion/v1.10"
|
2
|
+
xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xsi:type="reg:sectorType" coord_system_id="J2000" unit="deg" pos_angle_unit="deg">
|
3
|
+
<Position>1.23 3.14</Position>
|
4
|
+
<PosAngle1>23.1</PosAngle1>
|
5
|
+
<PosAngle2>15.1</PosAngle2>
|
6
|
+
</Region>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<Region xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ivoa.net/xml/STC/STCregion/v1.10"
|
2
|
+
xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xsi:type="reg:unionType">
|
3
|
+
<Circle coord_system_id="J2000" unit="deg">
|
4
|
+
<Center>7.2 5.1</Center>
|
5
|
+
<Radius>1.0</Radius>
|
6
|
+
</Circle>
|
7
|
+
<Ellipse coord_system_id="J2000" unit="deg" pos_angle_unit="deg">
|
8
|
+
<Center>7.2 5.1</Center>
|
9
|
+
<Radius>1.0</Radius>
|
10
|
+
<MinorRadius>0.5</MinorRadius>
|
11
|
+
<PosAngle>10.2</PosAngle>
|
12
|
+
</Ellipse>
|
13
|
+
<Polygon coord_system_id="J2000" unit="deg">
|
14
|
+
<Vertex>
|
15
|
+
<Position>1.1 2.2</Position>
|
16
|
+
</Vertex>
|
17
|
+
<Vertex>
|
18
|
+
<Position>2.2 3.3</Position>
|
19
|
+
<SmallCircle/>
|
20
|
+
</Vertex>
|
21
|
+
<Vertex>
|
22
|
+
<Position>3.3 4.4</Position>
|
23
|
+
</Vertex>
|
24
|
+
</Polygon>
|
25
|
+
</Region>
|
@@ -0,0 +1,60 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<STCResourceProfile xmlns="http://www.ivoa.net/xml/STC/stc-v1.10.xsd" xmlns:crd="http://www.ivoa.net/xml/STC/STCcoords/v1.10" xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.ivoa.net/xml/STC/stc-v1.10.xsd stc-v1.10.xsd">
|
3
|
+
<AstroCoordSystem ID="ICRS-TT-CXO">
|
4
|
+
<TimeFrame>
|
5
|
+
<Name>Time</Name>
|
6
|
+
<TimeScale>TT</TimeScale>
|
7
|
+
<TOPOCENTER/>
|
8
|
+
</TimeFrame>
|
9
|
+
<SpaceFrame>
|
10
|
+
<Name>Space</Name>
|
11
|
+
<ICRS/>
|
12
|
+
<TOPOCENTER/>
|
13
|
+
<SPHERICAL coord_naxes="2"/>
|
14
|
+
</SpaceFrame>
|
15
|
+
<SpectralFrame>
|
16
|
+
<Name>Energy</Name>
|
17
|
+
<TOPOCENTER/>
|
18
|
+
</SpectralFrame>
|
19
|
+
</AstroCoordSystem>
|
20
|
+
<crd:AstroCoords coord_system_id="ICRS-TT-CXO">
|
21
|
+
<crd:Time unit="s">
|
22
|
+
<crd:Name>Time</crd:Name>
|
23
|
+
<crd:Error>0.0001</crd:Error>
|
24
|
+
<crd:Resolution>0.000016</crd:Resolution>
|
25
|
+
<crd:Resolution>3.0</crd:Resolution>
|
26
|
+
<crd:Size>1000</crd:Size>
|
27
|
+
<crd:Size>170000</crd:Size>
|
28
|
+
</crd:Time>
|
29
|
+
<crd:Position2D unit="arcsec">
|
30
|
+
<crd:Name>Position</crd:Name>
|
31
|
+
<crd:Error2>1.0 1.0</crd:Error2>
|
32
|
+
<crd:Resolution2>0.5 0.5</crd:Resolution2>
|
33
|
+
<crd:Size2>1000 1000</crd:Size2>
|
34
|
+
<crd:Size2>4000 4000</crd:Size2>
|
35
|
+
</crd:Position2D>
|
36
|
+
<crd:Spectral unit="keV">
|
37
|
+
<crd:Name>Energy</crd:Name>
|
38
|
+
<crd:Error>0.1</crd:Error>
|
39
|
+
<crd:Resolution>0.02</crd:Resolution>
|
40
|
+
<crd:Resolution>2.0</crd:Resolution>
|
41
|
+
<crd:Size>2</crd:Size>
|
42
|
+
<crd:Size>10</crd:Size>
|
43
|
+
</crd:Spectral>
|
44
|
+
</crd:AstroCoords>
|
45
|
+
<AstroCoordArea ID="AllSky-CXO" coord_system_id="ICRS-TT-CXO">
|
46
|
+
<TimeInterval>
|
47
|
+
<StartTime>
|
48
|
+
<crd:Timescale>TT</crd:Timescale>
|
49
|
+
<crd:ISOTime>1999-07-23T16:00:00</crd:ISOTime>
|
50
|
+
</StartTime>
|
51
|
+
</TimeInterval>
|
52
|
+
<Region>
|
53
|
+
<reg:AllSky fill_factor="0.02"/>
|
54
|
+
</Region>
|
55
|
+
<SpectralInterval unit="keV">
|
56
|
+
<LoLimit>0.12</LoLimit>
|
57
|
+
<HiLimit>10.0</HiLimit>
|
58
|
+
</SpectralInterval>
|
59
|
+
</AstroCoordArea>
|
60
|
+
</STCResourceProfile>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<SearchLocation xmlns="http://www.ivoa.net/xml/STC/stc-v1.10.xsd" xmlns:crd="http://www.ivoa.net/xml/STC/STCcoords/v1.10" xmlns:reg="http://www.ivoa.net/xml/STC/STCregion/v1.10" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.ivoa.net/xml/STC/stc-v1.10.xsd stc-v1.10.xsd">
|
3
|
+
<AstroCoordSystem ID="ICRS-TT-BARY">
|
4
|
+
<TimeFrame>
|
5
|
+
<Name>Time</Name>
|
6
|
+
<TimeScale>TT</TimeScale>
|
7
|
+
<BARYCENTER/>
|
8
|
+
</TimeFrame>
|
9
|
+
<SpaceFrame>
|
10
|
+
<Name>Equatorial</Name>
|
11
|
+
<ICRS/>
|
12
|
+
<BARYCENTER/>
|
13
|
+
<SPHERICAL coord_naxes="2"/>
|
14
|
+
</SpaceFrame>
|
15
|
+
<SpectralFrame>
|
16
|
+
<Name>Wavelength</Name>
|
17
|
+
<BARYCENTER/>
|
18
|
+
</SpectralFrame>
|
19
|
+
</AstroCoordSystem>
|
20
|
+
<crd:AstroCoords coord_system_id="ICRS-TT-BARY">
|
21
|
+
<crd:Position2D unit="deg">
|
22
|
+
<crd:Name>RA,Dec</crd:Name>
|
23
|
+
<crd:Resolution2>0.0001 0.0001</crd:Resolution2>
|
24
|
+
<crd:Resolution2>0.0003 0.0003</crd:Resolution2>
|
25
|
+
<crd:Size2>0.5 0.5</crd:Size2>
|
26
|
+
<crd:Size2>0.67 0.67</crd:Size2>
|
27
|
+
<crd:PixSize2>0.00005 0.00005</crd:PixSize2>
|
28
|
+
<crd:PixSize2>0.00015 0.00015</crd:PixSize2>
|
29
|
+
</crd:Position2D>
|
30
|
+
<crd:Spectral unit="A">
|
31
|
+
<crd:Name>Lambda</crd:Name>
|
32
|
+
<crd:Resolution>300</crd:Resolution>
|
33
|
+
<crd:Resolution>600</crd:Resolution>
|
34
|
+
</crd:Spectral>
|
35
|
+
</crd:AstroCoords>
|
36
|
+
<AstroCoordArea ID="M81" coord_system_id="ICRS-TT-BARY">
|
37
|
+
<TimeInterval>
|
38
|
+
<StartTime>
|
39
|
+
<crd:Timescale>TT</crd:Timescale>
|
40
|
+
<crd:ISOTime>1900-01-01T00:00:00</crd:ISOTime>
|
41
|
+
</StartTime>
|
42
|
+
</TimeInterval>
|
43
|
+
<Region>
|
44
|
+
<reg:Circle coord_system_id="ICRS-TT-BARY" unit="deg">
|
45
|
+
<reg:Center>148.9 69.1</reg:Center>
|
46
|
+
<reg:Radius>2</reg:Radius>
|
47
|
+
</reg:Circle>
|
48
|
+
</Region>
|
49
|
+
<SpectralInterval unit="A">
|
50
|
+
<LoLimit>4000</LoLimit>
|
51
|
+
<HiLimit>7000</HiLimit>
|
52
|
+
</SpectralInterval>
|
53
|
+
</AstroCoordArea>
|
54
|
+
</SearchLocation>
|