voruby 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (156) hide show
  1. data/LICENSE +339 -0
  2. data/REQUIREMENTS +4 -0
  3. data/Rakefile.rb +296 -0
  4. data/lib/voruby/adql/adql.rb +2735 -0
  5. data/lib/voruby/adql/ext.rb +15 -0
  6. data/lib/voruby/adql/loader.rb +5 -0
  7. data/lib/voruby/adql/operations.rb +54 -0
  8. data/lib/voruby/adql/parser.rb +160 -0
  9. data/lib/voruby/adql/transforms.rb +573 -0
  10. data/lib/voruby/ext.rb +17 -0
  11. data/lib/voruby/loader.rb +4 -0
  12. data/lib/voruby/misc/propertyfile.rb +36 -0
  13. data/lib/voruby/plastic/applications.rb +174 -0
  14. data/lib/voruby/plastic/constants.rb +30 -0
  15. data/lib/voruby/plastic/loader.rb +10 -0
  16. data/lib/voruby/plastic/plastic.rb +1 -0
  17. data/lib/voruby/resources/conesearch/conesearch.rb +9 -0
  18. data/lib/voruby/resources/conesearch/conesearch_v0_2.rb +55 -0
  19. data/lib/voruby/resources/conesearch/conesearch_v0_3.rb +50 -0
  20. data/lib/voruby/resources/conesearch/conesearch_v1_0.rb +72 -0
  21. data/lib/voruby/resources/conesearch/loader.rb +4 -0
  22. data/lib/voruby/resources/loader.rb +50 -0
  23. data/lib/voruby/resources/nodes.rb +190 -0
  24. data/lib/voruby/resources/openskynode/loader.rb +4 -0
  25. data/lib/voruby/resources/openskynode/openskynode.rb +9 -0
  26. data/lib/voruby/resources/openskynode/openskynode_v0_1.rb +54 -0
  27. data/lib/voruby/resources/sia/loader.rb +5 -0
  28. data/lib/voruby/resources/sia/sia.rb +9 -0
  29. data/lib/voruby/resources/sia/sia_v0_6.rb +90 -0
  30. data/lib/voruby/resources/sia/sia_v0_7.rb +89 -0
  31. data/lib/voruby/resources/sia/sia_v1_0.rb +122 -0
  32. data/lib/voruby/resources/stsci.rb +59 -0
  33. data/lib/voruby/resources/vodataservice/coverage_v0_2.rb +195 -0
  34. data/lib/voruby/resources/vodataservice/coverage_v0_3.rb +158 -0
  35. data/lib/voruby/resources/vodataservice/loader.rb +5 -0
  36. data/lib/voruby/resources/vodataservice/vodataservice.rb +9 -0
  37. data/lib/voruby/resources/vodataservice/vodataservice_v0_4.rb +189 -0
  38. data/lib/voruby/resources/vodataservice/vodataservice_v0_5.rb +163 -0
  39. data/lib/voruby/resources/vodataservice/vodataservice_v1_0.rb +221 -0
  40. data/lib/voruby/resources/voregistry/loader.rb +4 -0
  41. data/lib/voruby/resources/voregistry/voregistry.rb +9 -0
  42. data/lib/voruby/resources/voregistry/voregistry_v0_2.rb +40 -0
  43. data/lib/voruby/resources/voregistry/voregistry_v0_3.rb +30 -0
  44. data/lib/voruby/resources/voregistry/voregistry_v1_0.rb +86 -0
  45. data/lib/voruby/resources/voresource/loader.rb +17 -0
  46. data/lib/voruby/resources/voresource/voresource.rb +9 -0
  47. data/lib/voruby/resources/voresource/voresource_v0_10.rb +322 -0
  48. data/lib/voruby/resources/voresource/voresource_v0_9.rb +405 -0
  49. data/lib/voruby/resources/voresource/voresource_v1_0.rb +230 -0
  50. data/lib/voruby/services/ext.rb +11 -0
  51. data/lib/voruby/services/gestalt/footprint.rb +95 -0
  52. data/lib/voruby/services/gestalt/wcs_fixer.rb +105 -0
  53. data/lib/voruby/services/gestalt/wesix.rb +155 -0
  54. data/lib/voruby/services/loader.rb +7 -0
  55. data/lib/voruby/services/registry/registry.rb +53 -0
  56. data/lib/voruby/services/resolver/resolver.rb +35 -0
  57. data/lib/voruby/sesame/loader.rb +6 -0
  58. data/lib/voruby/sesame/sesame_v1_0.rb +64 -0
  59. data/lib/voruby/simple/loader.rb +6 -0
  60. data/lib/voruby/simple/parameters.rb +196 -0
  61. data/lib/voruby/simple/sap.rb +446 -0
  62. data/lib/voruby/spacetime/loader.rb +3 -0
  63. data/lib/voruby/spacetime/spacetime.rb +607 -0
  64. data/lib/voruby/stc/coords_v1_20.rb +900 -0
  65. data/lib/voruby/stc/loader.rb +55 -0
  66. data/lib/voruby/stc/region_v1_20.rb +274 -0
  67. data/lib/voruby/stc/stc_v1_20.rb +1196 -0
  68. data/lib/voruby/util.rb +27 -0
  69. data/lib/voruby/voevent/loader.rb +7 -0
  70. data/lib/voruby/voevent/voevent_v1_0.rb +213 -0
  71. data/lib/voruby/voevent/voevent_v1_1.rb +196 -0
  72. data/lib/voruby/votables/chandra.rb +410 -0
  73. data/lib/voruby/votables/cnoc.rb +393 -0
  74. data/lib/voruby/votables/data.rb +179 -0
  75. data/lib/voruby/votables/galex.rb +390 -0
  76. data/lib/voruby/votables/hst.rb +391 -0
  77. data/lib/voruby/votables/int.rb +391 -0
  78. data/lib/voruby/votables/libxml_parser.rb +411 -0
  79. data/lib/voruby/votables/libxml_votable.rb +67 -0
  80. data/lib/voruby/votables/loader.rb +10 -0
  81. data/lib/voruby/votables/meta.rb +763 -0
  82. data/lib/voruby/votables/misc.rb +51 -0
  83. data/lib/voruby/votables/nsa.rb +393 -0
  84. data/lib/voruby/votables/nsar3.rb +410 -0
  85. data/lib/voruby/votables/rexml_parser.rb +408 -0
  86. data/lib/voruby/votables/rexml_votable.rb +67 -0
  87. data/lib/voruby/votables/sdss.rb +393 -0
  88. data/lib/voruby/votables/transforms.rb +388 -0
  89. data/lib/voruby/votables/tree.rb +45 -0
  90. data/lib/voruby/votables/types.rb +391 -0
  91. data/lib/voruby/votables/votable.rb +630 -0
  92. data/lib/voruby/votables/xmm.rb +394 -0
  93. data/test/adql/test1.adql +49 -0
  94. data/test/adql/test2.adql +51 -0
  95. data/test/adql/test3.adql +81 -0
  96. data/test/adql/test4.adql +53 -0
  97. data/test/adql/test5.adql +55 -0
  98. data/test/adql/test6.adql +18 -0
  99. data/test/adql/test7.adql +48 -0
  100. data/test/adql/unittest.rb +1672 -0
  101. data/test/plastic/test.rb +44 -0
  102. data/test/plastic/test.vot +5385 -0
  103. data/test/plastic/unittest.rb +66 -0
  104. data/test/resources/conesearch/conesearch_v0_3.xml +31 -0
  105. data/test/resources/conesearch/conesearch_v1_0.xml +86 -0
  106. data/test/resources/conesearch/unittest_v0_3.rb +22 -0
  107. data/test/resources/conesearch/unittest_v1_0.rb +24 -0
  108. data/test/resources/openskynode/open_sky_node_v0_1.xml +32 -0
  109. data/test/resources/openskynode/unittest_v0_1.rb +31 -0
  110. data/test/resources/sia/simple_image_access_v0_7.xml +36 -0
  111. data/test/resources/sia/simple_image_access_v1_0.xml +122 -0
  112. data/test/resources/sia/unittest_v0_7.rb +24 -0
  113. data/test/resources/sia/unittest_v1_0.rb +29 -0
  114. data/test/resources/stsci.xml +336 -0
  115. data/test/resources/unittest_stsci.rb +25 -0
  116. data/test/resources/vodataservice/catalog_service_resource_v1_0.xml +128 -0
  117. data/test/resources/vodataservice/data_collection_resource_v0_5.xml +54 -0
  118. data/test/resources/vodataservice/data_collection_resource_v1_0.xml +117 -0
  119. data/test/resources/vodataservice/data_service_resource_v1_0.xml +115 -0
  120. data/test/resources/vodataservice/sky_service_resource_v0_10.xml +45 -0
  121. data/test/resources/vodataservice/table_service_resource_v1_0.xml +122 -0
  122. data/test/resources/vodataservice/tabular_sky_service_resource_v0_10.xml +60 -0
  123. data/test/resources/vodataservice/unittest_v0_5.rb +126 -0
  124. data/test/resources/vodataservice/unittest_v1_0.rb +151 -0
  125. data/test/resources/voregistry/authority_resource_v0_3.xml +20 -0
  126. data/test/resources/voregistry/authority_resource_v1_0.xml +82 -0
  127. data/test/resources/voregistry/registry_service_v0_3.xml +20 -0
  128. data/test/resources/voregistry/registry_service_v1_0.xml +107 -0
  129. data/test/resources/voregistry/unittest_v0_3.rb +31 -0
  130. data/test/resources/voregistry/unittest_v1_0.rb +34 -0
  131. data/test/resources/voresource/organisation_resource_v1_0.xml +90 -0
  132. data/test/resources/voresource/resource_organisation_v0_10.xml +22 -0
  133. data/test/resources/voresource/resource_service_v0_10.xml +19 -0
  134. data/test/resources/voresource/resource_v0_10.xml +19 -0
  135. data/test/resources/voresource/resource_v1_0.xml +79 -0
  136. data/test/resources/voresource/service_resource_v1_0.xml +91 -0
  137. data/test/resources/voresource/unittest_v0_10.rb +61 -0
  138. data/test/resources/voresource/unittest_v0_9.rb +4 -0
  139. data/test/resources/voresource/unittest_v1_0.rb +190 -0
  140. data/test/services/gestalt/unittest.rb +74 -0
  141. data/test/services/registry/unittest.rb +34 -0
  142. data/test/services/resolver/unittest.rb +38 -0
  143. data/test/simple/unittest.rb +46 -0
  144. data/test/spacetime/unittest.rb +39 -0
  145. data/test/stc/catalog_entry_location_v1_20.xml +112 -0
  146. data/test/stc/obs_data_location_v1_20.xml +108 -0
  147. data/test/stc/search_location_v1_20.xml +54 -0
  148. data/test/stc/stc_resource_profile_v1_20.xml +60 -0
  149. data/test/stc/unittest_v1_20.rb +620 -0
  150. data/test/voevent/unittest_v1_0.rb +79 -0
  151. data/test/voevent/unittest_v1_1.rb +70 -0
  152. data/test/voevent/voevent_v1_0.xml +96 -0
  153. data/test/voevent/voevent_v1_1.xml +76 -0
  154. data/test/votables/test.vot +366 -0
  155. data/test/votables/unittest.rb +54 -0
  156. metadata +256 -0
@@ -0,0 +1,391 @@
1
+ # A set of classes designed to read and manipulate
2
+ # especific VOTables[http://www.ivoa.net/Documents/latest/VOT.html].
3
+ # This class represents a INT VOTable.
4
+
5
+ require 'voruby/votables/votable'
6
+
7
+ module VORuby
8
+ module VOTables
9
+
10
+ module VOTable
11
+ class INTVOTable < VOTable
12
+
13
+ # Our object's contructor
14
+ # [_votable:_]
15
+ # The VOTable object
16
+ def initialize(votable)
17
+ super(votable.id, votable.version, votable.description,
18
+ votable.definitions, votable.coosys, votable.params,
19
+ votable.info, votable.resources)
20
+ end
21
+
22
+ # Find a field in INT configuration file given a key.
23
+ # Returns a hash with the field's attributes
24
+ # [_key_:]
25
+ # The key indexing on field's attribute
26
+ def find_field_in_conf_file(key)
27
+ int_field = {'id'=> nil, 'name'=> nil, 'ucd'=> nil}
28
+
29
+ if key != nil
30
+ INT_ARCHIVE_CONFIG.each do |archive|
31
+ archive['votable_fields'].each do |field|
32
+ if field['key'] == key
33
+ int_field['id'] = field['id'] if field['id'] != 'nil'
34
+ int_field['name'] = field['name'] if field['name'] != 'nil'
35
+ int_field['ucd'] = field['ucd'] if field['ucd'] != 'nil'
36
+ break
37
+ end
38
+ end
39
+ end
40
+ end
41
+ return int_field
42
+ end
43
+
44
+ # Find the column number(s) associated with the
45
+ # VOX:imageAccessReference UCD.
46
+ # Returns a list of column positions.
47
+ def image_access_reference_columns()
48
+ ucd_access = find_field_in_conf_file('VOX:Image_AccessReference')['ucd']
49
+
50
+ if find_columns(ucd_access).first != nil
51
+ find_columns(ucd_access).first
52
+ end
53
+ end
54
+
55
+ def image_ra_columns
56
+ ucd_ra = find_field_in_conf_file('POS_EQ_RA_MAIN')['ucd']
57
+
58
+ if find_columns(ucd_ra).first != nil
59
+ find_columns(ucd_ra).first
60
+ end
61
+ end
62
+
63
+ def image_dec_columns
64
+ ucd_dec = find_field_in_conf_file('POS_EQ_DEC_MAIN')['ucd']
65
+
66
+ if find_columns(ucd_dec).first != nil
67
+ find_columns(ucd_dec).first
68
+ end
69
+ end
70
+
71
+ def image_filter_columns
72
+ ucd_filter = find_field_in_conf_file('VOX:BandPass_ID')['ucd']
73
+
74
+ if find_columns(ucd_filter).first != nil
75
+ find_columns(ucd_filter).first
76
+ end
77
+ end
78
+
79
+ def image_date_obs_columns
80
+ #ucd_date_obs = find_field_in_conf_file('')['ucd']
81
+
82
+ #if find_columns(ucd_date_obs).first != nil
83
+ # find_columns(ucd_date_obs).first
84
+ #end
85
+ end
86
+
87
+ def image_telescope_columns
88
+ #ucd_telescope = find_field_in_conf_file('')['ucd']
89
+
90
+ #if find_columns(ucd_telescope).first != nil
91
+ # find_columns(ucd_telescope).first
92
+ #end
93
+ end
94
+
95
+ def image_survey_columns
96
+ ucd_survey = find_field_in_conf_file('VOX:Image_title')['ucd']
97
+
98
+ if find_columns(ucd_survey).first != nil
99
+ find_columns(ucd_survey).first
100
+ end
101
+ end
102
+
103
+ def image_instrument_columns
104
+ ucd_instrument = find_field_in_conf_file('VOX:INST_ID')['ucd']
105
+
106
+ if find_columns(ucd_instrument).first != nil
107
+ find_columns(ucd_instrument).first
108
+ end
109
+ end
110
+
111
+ def image_sky_columns
112
+ #ucd_sky = find_field_in_conf_file('')['ucd']
113
+
114
+ #if find_columns(ucd_sky).first != nil
115
+ # find_columns(ucd_sky).first
116
+ #end
117
+ end
118
+
119
+ def image_zeropoint_columns
120
+ #ucd_zeropoint = find_field_in_conf_file('')['ucd']
121
+
122
+ #if find_columns(ucd_zeropoint).first != nil
123
+ # find_columns(ucd_zeropoint).first
124
+ #end
125
+ end
126
+
127
+ def image_seeing_columns
128
+ #ucd_seeing = find_field_in_conf_file('')['ucd']
129
+
130
+ #if find_columns(ucd_seeing).first != nil
131
+ # find_columns(ucd_seeing).first
132
+ #end
133
+ end
134
+
135
+ def image_depth_columns
136
+ #ucd_depth = find_field_in_conf_file('')['ucd']
137
+
138
+ #if find_columns(ucd_depth).first != nil
139
+ # find_columns(ucd_depth).first
140
+ #end
141
+ end
142
+
143
+ def image_exptime_columns
144
+ #ucd_exptime = find_field_in_conf_file('')['ucd']
145
+
146
+ #if find_columns(ucd_exptime).first != nil
147
+ # find_columns(ucd_exptime).first
148
+ #end
149
+ end
150
+
151
+ # Create headers for HTML table
152
+ # [_res_:]
153
+ # The resource from which to extract the table in question.
154
+ # [_tbl_:]
155
+ # The table inside the resource from which to extract the rows in question.
156
+ # [_infer_add_to_cart_ref_:]
157
+ #
158
+ # [_add_to_cart_header_value_:]
159
+ #
160
+ # [_infer_access_ref_:]
161
+ # Link the access reference URL associated with a row.
162
+ # [_access_ref_header_value_:]
163
+ # For the access reference column, place this value in the header.
164
+ # [_access_ref_col_:]
165
+ # A valid SIA VOTable will only ever have one VOX:Image_AccessReference.
166
+ # [_header_class_:]
167
+ # The class to assign the header of the HTML table.
168
+ def create_headers(res, tbl,
169
+ infer_add_to_cart_ref, add_to_cart_header_value,
170
+ infer_access_ref, access_ref_header_value, access_ref_col,
171
+ header_class)
172
+
173
+ headers = Array.new
174
+ thead = "<thead class=\"#{header_class}\">\n"
175
+
176
+ thead << "<tr>\n"
177
+ if infer_add_to_cart_ref
178
+ thead << "<th>#{add_to_cart_header_value}</th>\n"
179
+ headers.push('&nbsp')
180
+ end
181
+ if infer_access_ref
182
+ thead << "<th>#{access_ref_header_value}</th>\n"
183
+ headers.push('&nbsp')
184
+ end
185
+ col_count = 0
186
+ fields(res, tbl).each do |field|
187
+ field_archive = find_field_in_conf_file(field.ucd.value())
188
+ field_ucd = field_archive['ucd']
189
+ if infer_access_ref and col_count == access_ref_col
190
+ headers[1] = field_ucd if field_ucd != 'nil'
191
+ else
192
+ thead << "<th>#{field_archive['name']}</th>\n"
193
+ if field_ucd != 'nil'
194
+ headers.push(field_ucd)
195
+ else
196
+ headers.push('&nbsp')
197
+ end
198
+ end
199
+ col_count += 1
200
+ end
201
+ thead << " </tr>\n"
202
+
203
+ thead << "<tr>\n"
204
+ headers.each do |h|
205
+ thead << "<th>#{h}</th>\n"
206
+ end
207
+ thead << "</tr>\n"
208
+
209
+ thead << "</thead>"
210
+
211
+ return thead
212
+ end
213
+
214
+ def create_add_to_cart_link(link_ref, columns)
215
+ access_ref_col = image_access_reference_columns()
216
+ link_ref << '&resource=' + CGI.escape(columns[access_ref_col].value).to_s if access_ref_col
217
+ ra_col = image_ra_columns()
218
+ link_ref << '&rac=' + columns[ra_col].value.to_s if ra_col
219
+ dec_col = image_dec_columns()
220
+ link_ref << '&decc=' + columns[dec_col].value.to_s if dec_col
221
+ filter_col = image_filter_columns()
222
+ link_ref << '&filter=' + columns[filter_col].value.to_s if filter_col
223
+ date_obs_col = image_date_obs_columns()
224
+ link_ref << '&date_obs=' + columns[date_obs_col].value.to_s if date_obs_col
225
+ teles_col = image_telescope_columns()
226
+ link_ref << '&telescop=' + columns[teles_col].value.to_s if teles_col
227
+ survey_col = image_survey_columns()
228
+ link_ref << '&survey=' + columns[survey_col].value.to_s if survey_col
229
+ instrum_col = image_instrument_columns()
230
+ link_ref << '&instrument=' + columns[instrum_col].value.to_s if instrum_col
231
+ sky_col = image_sky_columns()
232
+ link_ref << '&sky=' + columns[sky_col].value.to_s if sky_col
233
+ zerop_col = image_zeropoint_columns()
234
+ link_ref << '&zeropoint=' + columns[zerop_col].value.to_s if zerop_col
235
+ seeing_col = image_seeing_columns()
236
+ link_ref << '&seeing=' + columns[seeing_col].value.to_s if seeing_col
237
+ depth_col = image_depth_columns()
238
+ link_ref << '&depth=' + columns[depth_col].value.to_s if depth_col
239
+ exptime_col = image_exptime_columns()
240
+ link_ref << '&exptime=' + columns[exptime_col].value.to_s if exptime_col
241
+
242
+ return link_ref
243
+ end
244
+
245
+ # Create body for HTML table
246
+ # [_res_:]
247
+ # The resource from which to extract the table in question.
248
+ # [_tbl_:]
249
+ # The table inside the resource from which to extract the rows in question.
250
+ # [_infer_add_to_cart_ref_:]
251
+ #
252
+ # [_add_to_cart_link_value_:]
253
+ #
254
+ # [_add_to_cart_link_ref_:]
255
+ #
256
+ # [_infer_access_ref_:]
257
+ # Link the access reference URL associated with a row.
258
+ # [_access_ref_link_value_:]
259
+ # For the access reference column, link this word.
260
+ # [_access_ref_col_:]
261
+ # A valid SIA VOTable will only ever have one VOX:Image_AccessReference.
262
+ # [_body_class_:]
263
+ # The class to assign the body of the HTML table.
264
+ # [_row_classes_:]
265
+ # The class to assign the HTML table body rows.
266
+ def create_body(res, tbl,
267
+ infer_add_to_cart_ref, add_to_cart_link_value, add_to_cart_link_ref,
268
+ infer_access_ref, access_ref_link_value, access_ref_col,
269
+ body_class, row_classes)
270
+
271
+ tbody = "<tbody class=\"#{body_class}\">\n"
272
+ row_count = 0
273
+ rows(res, tbl).each do |tr|
274
+ tbody << "<tr class=\"#{row_classes[row_count % 2]}\">\n"
275
+
276
+ # Specially mark up the first column to link to the image.
277
+ columns = tr.tds()
278
+
279
+ if infer_add_to_cart_ref
280
+ archive = add_to_cart_link_ref.slice(add_to_cart_link_ref.index('&archive='), add_to_cart_link_ref.length)
281
+ archive = archive.slice('&archive='.length, archive.length)
282
+ archive = archive.slice(0, archive.index('&')) if archive.index('&')
283
+ link_id = 'add_' + archive.to_s + '_' + row_count.to_s
284
+ url = create_add_to_cart_link(add_to_cart_link_ref, columns)
285
+ js = "new Ajax.Request('#{url}', " +
286
+ " {method: 'post', " +
287
+ " onComplete: function(request){Element.hide('#{link_id}');}});"
288
+ tbody << "<td><a id=\"#{link_id}\" href=\"javascript:void(0);\" " +
289
+ "onclick=\"#{js};return false;\"" +
290
+ ">#{add_to_cart_link_value}</a></td>\n"
291
+ end
292
+ if infer_access_ref
293
+ link_ref = columns[access_ref_col].value
294
+ tbody << "<td><a href=\"#{link_ref}\">#{access_ref_link_value}</a></td>\n"
295
+ end
296
+
297
+ col_count = 0
298
+ columns.each do |td|
299
+ tbody << "<td>#{td.value}</td>\n" if infer_access_ref and col_count != access_ref_col
300
+ col_count += 1
301
+ end
302
+ tbody << "</tr>\n"
303
+ row_count += 1
304
+ end
305
+ tbody << "</tbody>"
306
+
307
+ return tbody
308
+ end
309
+
310
+ # Convert the specified table in the specified resource into an HTML
311
+ # table.
312
+ # [_id_:]
313
+ # The ID to assign to the HTML table as a whole.
314
+ # [_add_to_cart_link_ref_:]
315
+ #
316
+ # [_res_:]
317
+ # The resource from which to extract the table in question.
318
+ # [_tbl_:]
319
+ # The table inside the resource from which to extract the rows in question.
320
+ # [_infer_add_to_cart_ref_:]
321
+ #
322
+ # [_add_to_cart_header_value_:]
323
+ #
324
+ # [_add_to_cart_link_value_:]
325
+ #
326
+ # [_infer_access_ref_:]
327
+ # Link the access reference URL associated with a row.
328
+ # [_access_ref_header_value_:]
329
+ # For the access reference column, place this value in the header.
330
+ # [_access_ref_link_value_:]
331
+ # For the access reference column, link this word.
332
+ # [_show_border_:]
333
+ # The boolean value to show HTML table border
334
+ # [_table_class_:]
335
+ # The class to assign the HTML table as a whole.
336
+ # [_header_class_:]
337
+ # The class to assign the header of the HTML table.
338
+ # [_body_class_:]
339
+ # The class to assign the body of the HTML table.
340
+ # [_row_classes_:]
341
+ # The class to assign the HTML table body rows.
342
+ def to_html(id=nil, add_to_cart_link_ref=nil, res=0, tbl=0,
343
+ infer_add_to_cart_ref=true,
344
+ add_to_cart_header_value='Add to Cart',
345
+ add_to_cart_link_value='Add',
346
+ infer_access_ref=true,
347
+ access_ref_header_value='URL',
348
+ access_ref_link_value='Retrieve',
349
+ show_border=false,
350
+ table_class='votable',
351
+ header_class='header',
352
+ body_class='body',
353
+ row_classes=['row1', 'row2'])
354
+ begin
355
+ # A valid SIA VOTable will only ever have one VOX:Image_AccessReference.
356
+ access_ref_col = image_access_reference_columns()
357
+
358
+ if access_ref_col
359
+ # Create headers
360
+ thead = create_headers(res, tbl,
361
+ infer_add_to_cart_ref, add_to_cart_header_value,
362
+ infer_access_ref, access_ref_header_value, access_ref_col,
363
+ header_class)
364
+
365
+ # Create body
366
+ tbody = create_body(res, tbl,
367
+ infer_add_to_cart_ref, add_to_cart_link_value, add_to_cart_link_ref,
368
+ infer_access_ref, access_ref_link_value, access_ref_col,
369
+ body_class, row_classes)
370
+
371
+ return create_table(id, show_border, table_class, thead, tbody)
372
+ else
373
+ title = 'No Data'
374
+ message = 'VOTable not contains data.'
375
+ return create_message_table(table_class, header_class,
376
+ body_class, row_classes, title, message)
377
+ end
378
+
379
+ rescue Exception => e
380
+ title = 'Error'
381
+ message = @resources[0].info[0].text().to_s()
382
+ table = create_message_table(table_class, header_class,
383
+ body_class, row_classes, title, message)
384
+ end
385
+ end
386
+
387
+ end
388
+ end
389
+
390
+ end
391
+ end