geohydra 0.3

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.
Files changed (687) hide show
  1. data/.gitignore +23 -0
  2. data/.gitmodules +3 -0
  3. data/.travis.yml +7 -0
  4. data/Gemfile +15 -0
  5. data/Gemfile.lock +281 -0
  6. data/LICENSE +14 -0
  7. data/README.md +187 -0
  8. data/Rakefile +34 -0
  9. data/VERSION +1 -0
  10. data/bin/accession.rb +109 -0
  11. data/bin/assemble.rb +307 -0
  12. data/bin/assemble_data.rb +66 -0
  13. data/bin/assemble_placenames.rb +110 -0
  14. data/bin/build_stage_options.rb +27 -0
  15. data/bin/derive_wgs84.rb +85 -0
  16. data/bin/extract_thumbnail.rb +49 -0
  17. data/bin/geohydra +11 -0
  18. data/bin/ingest_arcgis.rb +77 -0
  19. data/bin/ingest_tufts.rb +71 -0
  20. data/bin/loader.rb +296 -0
  21. data/bin/loader_postgis.rb +259 -0
  22. data/bin/seed.rb +78 -0
  23. data/bin/solr_indexer.rb +41 -0
  24. data/bin/sync_geoserver_metadata.rb +168 -0
  25. data/bin/validate_data.rb +59 -0
  26. data/config/.gitignore +1 -0
  27. data/config/boot.rb +17 -0
  28. data/config/database.yml +29 -0
  29. data/config/environments/.gitignore +8 -0
  30. data/config/environments/.gitkeep +0 -0
  31. data/config/environments/example.rb +85 -0
  32. data/config/environments/example_rgeoserver.yml +16 -0
  33. data/config/migrate.rb +11 -0
  34. data/geohydra.gemspec +49 -0
  35. data/lib/geohydra.rb +11 -0
  36. data/lib/geohydra/accession.rb +291 -0
  37. data/lib/geohydra/arcgis_to_iso19139_fc.xsl +364 -0
  38. data/lib/geohydra/gazetteer.csv +36 -0
  39. data/lib/geohydra/gazetteer.rb +73 -0
  40. data/lib/geohydra/geonetwork.rb +156 -0
  41. data/lib/geohydra/mods2ogp.xsl +198 -0
  42. data/lib/geohydra/ogpcleanup.xsl +28 -0
  43. data/lib/geohydra/solr.rb +49 -0
  44. data/lib/geohydra/transform.rb +175 -0
  45. data/lib/geohydra/utils.rb +19 -0
  46. data/lib/geohydra/version.rb +3 -0
  47. data/scripts/correct_collections.rb +93 -0
  48. data/scripts/dbfdump.rb +13 -0
  49. data/scripts/extract.xsl +35 -0
  50. data/scripts/geoserver_createdb.sh +6 -0
  51. data/scripts/geoserver_createdb.sql +29 -0
  52. data/scripts/geowebcache_tops.rb +22 -0
  53. data/scripts/ingest_mods.rb +23 -0
  54. data/scripts/iso2html/displayElement.xsl +52 -0
  55. data/scripts/iso2html/elements-ISO.xml +665 -0
  56. data/scripts/iso2html/headers-ISO.xml +16 -0
  57. data/scripts/iso2html/printFormatted.xsl +227 -0
  58. data/scripts/iso2html/printtextlines.xsl +171 -0
  59. data/scripts/iso2html/xml-to-html-ISO.xsl +273 -0
  60. data/scripts/iso2html/xml-to-text-ISO.xsl +148 -0
  61. data/scripts/load_stage_data.rb +13 -0
  62. data/scripts/nextgis_iso19115.xsl +553 -0
  63. data/scripts/replicate_db.sh +7 -0
  64. data/scripts/report_stage.rb +5 -0
  65. data/solr/dev.html +19 -0
  66. data/solr/dlss-dev-drh-geo/conf/schema.xml +54 -0
  67. data/solr/dlss-dev-drh-geo/conf/solrconfig.xml +156 -0
  68. data/solr/dlss-dev-drh-geo/deploy.sh +15 -0
  69. data/solr/dlss-dev-drh-geo/example_doc.xml +25 -0
  70. data/solr/dlss-dev-drh-geo/test.sh +14 -0
  71. data/solr/ogp-dev/conf/admin-extra.html +24 -0
  72. data/solr/ogp-dev/conf/admin-extra.menu-bottom.html +25 -0
  73. data/solr/ogp-dev/conf/admin-extra.menu-top.html +25 -0
  74. data/solr/ogp-dev/conf/currency.xml +67 -0
  75. data/solr/ogp-dev/conf/elevate.xml +38 -0
  76. data/solr/ogp-dev/conf/lang/contractions_ca.txt +8 -0
  77. data/solr/ogp-dev/conf/lang/contractions_fr.txt +15 -0
  78. data/solr/ogp-dev/conf/lang/contractions_ga.txt +5 -0
  79. data/solr/ogp-dev/conf/lang/contractions_it.txt +23 -0
  80. data/solr/ogp-dev/conf/lang/hyphenations_ga.txt +5 -0
  81. data/solr/ogp-dev/conf/lang/stemdict_nl.txt +6 -0
  82. data/solr/ogp-dev/conf/lang/stoptags_ja.txt +420 -0
  83. data/solr/ogp-dev/conf/lang/stopwords_ar.txt +125 -0
  84. data/solr/ogp-dev/conf/lang/stopwords_bg.txt +193 -0
  85. data/solr/ogp-dev/conf/lang/stopwords_ca.txt +220 -0
  86. data/solr/ogp-dev/conf/lang/stopwords_cz.txt +172 -0
  87. data/solr/ogp-dev/conf/lang/stopwords_da.txt +108 -0
  88. data/solr/ogp-dev/conf/lang/stopwords_de.txt +292 -0
  89. data/solr/ogp-dev/conf/lang/stopwords_el.txt +78 -0
  90. data/solr/ogp-dev/conf/lang/stopwords_en.txt +54 -0
  91. data/solr/ogp-dev/conf/lang/stopwords_es.txt +354 -0
  92. data/solr/ogp-dev/conf/lang/stopwords_eu.txt +99 -0
  93. data/solr/ogp-dev/conf/lang/stopwords_fa.txt +313 -0
  94. data/solr/ogp-dev/conf/lang/stopwords_fi.txt +95 -0
  95. data/solr/ogp-dev/conf/lang/stopwords_fr.txt +184 -0
  96. data/solr/ogp-dev/conf/lang/stopwords_ga.txt +110 -0
  97. data/solr/ogp-dev/conf/lang/stopwords_gl.txt +161 -0
  98. data/solr/ogp-dev/conf/lang/stopwords_hi.txt +235 -0
  99. data/solr/ogp-dev/conf/lang/stopwords_hu.txt +209 -0
  100. data/solr/ogp-dev/conf/lang/stopwords_hy.txt +46 -0
  101. data/solr/ogp-dev/conf/lang/stopwords_id.txt +359 -0
  102. data/solr/ogp-dev/conf/lang/stopwords_it.txt +301 -0
  103. data/solr/ogp-dev/conf/lang/stopwords_ja.txt +127 -0
  104. data/solr/ogp-dev/conf/lang/stopwords_lv.txt +172 -0
  105. data/solr/ogp-dev/conf/lang/stopwords_nl.txt +117 -0
  106. data/solr/ogp-dev/conf/lang/stopwords_no.txt +192 -0
  107. data/solr/ogp-dev/conf/lang/stopwords_pt.txt +251 -0
  108. data/solr/ogp-dev/conf/lang/stopwords_ro.txt +233 -0
  109. data/solr/ogp-dev/conf/lang/stopwords_ru.txt +241 -0
  110. data/solr/ogp-dev/conf/lang/stopwords_sv.txt +131 -0
  111. data/solr/ogp-dev/conf/lang/stopwords_th.txt +119 -0
  112. data/solr/ogp-dev/conf/lang/stopwords_tr.txt +212 -0
  113. data/solr/ogp-dev/conf/lang/userdict_ja.txt +29 -0
  114. data/solr/ogp-dev/conf/mapping-FoldToASCII.txt +3813 -0
  115. data/solr/ogp-dev/conf/mapping-ISOLatin1Accent.txt +246 -0
  116. data/solr/ogp-dev/conf/protwords.txt +21 -0
  117. data/solr/ogp-dev/conf/schema.xml +1362 -0
  118. data/solr/ogp-dev/conf/scripts.conf +24 -0
  119. data/solr/ogp-dev/conf/solrconfig.xml +1816 -0
  120. data/solr/ogp-dev/conf/spellings.txt +2 -0
  121. data/solr/ogp-dev/conf/stopwords.txt +14 -0
  122. data/solr/ogp-dev/conf/synonyms.txt +29 -0
  123. data/solr/ogp-dev/conf/synonymsIso.txt +158 -0
  124. data/solr/ogp-dev/conf/synonymsLcsh.txt +120 -0
  125. data/solr/ogp-dev/conf/synonymsState.txt +105 -0
  126. data/solr/ogp-dev/conf/update-script.js +53 -0
  127. data/solr/ogp-dev/conf/velocity/VM_global_library.vm +170 -0
  128. data/solr/ogp-dev/conf/velocity/browse.vm +50 -0
  129. data/solr/ogp-dev/conf/velocity/cluster.vm +9 -0
  130. data/solr/ogp-dev/conf/velocity/clusterResults.vm +12 -0
  131. data/solr/ogp-dev/conf/velocity/debug.vm +17 -0
  132. data/solr/ogp-dev/conf/velocity/did_you_mean.vm +4 -0
  133. data/solr/ogp-dev/conf/velocity/facet_fields.vm +15 -0
  134. data/solr/ogp-dev/conf/velocity/facet_pivot.vm +3 -0
  135. data/solr/ogp-dev/conf/velocity/facet_queries.vm +3 -0
  136. data/solr/ogp-dev/conf/velocity/facet_ranges.vm +15 -0
  137. data/solr/ogp-dev/conf/velocity/facets.vm +5 -0
  138. data/solr/ogp-dev/conf/velocity/footer.vm +17 -0
  139. data/solr/ogp-dev/conf/velocity/head.vm +32 -0
  140. data/solr/ogp-dev/conf/velocity/header.vm +3 -0
  141. data/solr/ogp-dev/conf/velocity/hit.vm +11 -0
  142. data/solr/ogp-dev/conf/velocity/hitGrouped.vm +24 -0
  143. data/solr/ogp-dev/conf/velocity/join-doc.vm +4 -0
  144. data/solr/ogp-dev/conf/velocity/jquery.autocomplete.css +48 -0
  145. data/solr/ogp-dev/conf/velocity/jquery.autocomplete.js +763 -0
  146. data/solr/ogp-dev/conf/velocity/layout.vm +20 -0
  147. data/solr/ogp-dev/conf/velocity/main.css +208 -0
  148. data/solr/ogp-dev/conf/velocity/product-doc.vm +27 -0
  149. data/solr/ogp-dev/conf/velocity/query.vm +42 -0
  150. data/solr/ogp-dev/conf/velocity/queryGroup.vm +19 -0
  151. data/solr/ogp-dev/conf/velocity/querySpatial.vm +40 -0
  152. data/solr/ogp-dev/conf/velocity/richtext-doc.vm +114 -0
  153. data/solr/ogp-dev/conf/velocity/suggest.vm +3 -0
  154. data/solr/ogp-dev/conf/velocity/tabs.vm +6 -0
  155. data/solr/ogp-dev/conf/xslt/example.xsl +132 -0
  156. data/solr/ogp-dev/conf/xslt/example_atom.xsl +67 -0
  157. data/solr/ogp-dev/conf/xslt/example_rss.xsl +66 -0
  158. data/solr/ogp-dev/conf/xslt/luke.xsl +337 -0
  159. data/solr/ogp-dev/conf/xslt/updateXml.xsl +70 -0
  160. data/solr/ogp-dev/deploy.sh +15 -0
  161. data/solr/ogp-dev/purge.sh +9 -0
  162. data/solr/ogp-dev/upload.sh +17 -0
  163. data/solr/ogp-test/conf/admin-extra.html +24 -0
  164. data/solr/ogp-test/conf/admin-extra.menu-bottom.html +25 -0
  165. data/solr/ogp-test/conf/admin-extra.menu-top.html +25 -0
  166. data/solr/ogp-test/conf/currency.xml +67 -0
  167. data/solr/ogp-test/conf/elevate.xml +38 -0
  168. data/solr/ogp-test/conf/lang/contractions_ca.txt +8 -0
  169. data/solr/ogp-test/conf/lang/contractions_fr.txt +15 -0
  170. data/solr/ogp-test/conf/lang/contractions_ga.txt +5 -0
  171. data/solr/ogp-test/conf/lang/contractions_it.txt +23 -0
  172. data/solr/ogp-test/conf/lang/hyphenations_ga.txt +5 -0
  173. data/solr/ogp-test/conf/lang/stemdict_nl.txt +6 -0
  174. data/solr/ogp-test/conf/lang/stoptags_ja.txt +420 -0
  175. data/solr/ogp-test/conf/lang/stopwords_ar.txt +125 -0
  176. data/solr/ogp-test/conf/lang/stopwords_bg.txt +193 -0
  177. data/solr/ogp-test/conf/lang/stopwords_ca.txt +220 -0
  178. data/solr/ogp-test/conf/lang/stopwords_cz.txt +172 -0
  179. data/solr/ogp-test/conf/lang/stopwords_da.txt +108 -0
  180. data/solr/ogp-test/conf/lang/stopwords_de.txt +292 -0
  181. data/solr/ogp-test/conf/lang/stopwords_el.txt +78 -0
  182. data/solr/ogp-test/conf/lang/stopwords_en.txt +54 -0
  183. data/solr/ogp-test/conf/lang/stopwords_es.txt +354 -0
  184. data/solr/ogp-test/conf/lang/stopwords_eu.txt +99 -0
  185. data/solr/ogp-test/conf/lang/stopwords_fa.txt +313 -0
  186. data/solr/ogp-test/conf/lang/stopwords_fi.txt +95 -0
  187. data/solr/ogp-test/conf/lang/stopwords_fr.txt +184 -0
  188. data/solr/ogp-test/conf/lang/stopwords_ga.txt +110 -0
  189. data/solr/ogp-test/conf/lang/stopwords_gl.txt +161 -0
  190. data/solr/ogp-test/conf/lang/stopwords_hi.txt +235 -0
  191. data/solr/ogp-test/conf/lang/stopwords_hu.txt +209 -0
  192. data/solr/ogp-test/conf/lang/stopwords_hy.txt +46 -0
  193. data/solr/ogp-test/conf/lang/stopwords_id.txt +359 -0
  194. data/solr/ogp-test/conf/lang/stopwords_it.txt +301 -0
  195. data/solr/ogp-test/conf/lang/stopwords_ja.txt +127 -0
  196. data/solr/ogp-test/conf/lang/stopwords_lv.txt +172 -0
  197. data/solr/ogp-test/conf/lang/stopwords_nl.txt +117 -0
  198. data/solr/ogp-test/conf/lang/stopwords_no.txt +192 -0
  199. data/solr/ogp-test/conf/lang/stopwords_pt.txt +251 -0
  200. data/solr/ogp-test/conf/lang/stopwords_ro.txt +233 -0
  201. data/solr/ogp-test/conf/lang/stopwords_ru.txt +241 -0
  202. data/solr/ogp-test/conf/lang/stopwords_sv.txt +131 -0
  203. data/solr/ogp-test/conf/lang/stopwords_th.txt +119 -0
  204. data/solr/ogp-test/conf/lang/stopwords_tr.txt +212 -0
  205. data/solr/ogp-test/conf/lang/userdict_ja.txt +29 -0
  206. data/solr/ogp-test/conf/mapping-FoldToASCII.txt +3813 -0
  207. data/solr/ogp-test/conf/mapping-ISOLatin1Accent.txt +246 -0
  208. data/solr/ogp-test/conf/protwords.txt +21 -0
  209. data/solr/ogp-test/conf/schema.xml +1362 -0
  210. data/solr/ogp-test/conf/scripts.conf +24 -0
  211. data/solr/ogp-test/conf/solrconfig.xml +1816 -0
  212. data/solr/ogp-test/conf/spellings.txt +2 -0
  213. data/solr/ogp-test/conf/stopwords.txt +14 -0
  214. data/solr/ogp-test/conf/synonyms.txt +29 -0
  215. data/solr/ogp-test/conf/synonymsIso.txt +158 -0
  216. data/solr/ogp-test/conf/synonymsLcsh.txt +120 -0
  217. data/solr/ogp-test/conf/synonymsState.txt +105 -0
  218. data/solr/ogp-test/conf/update-script.js +53 -0
  219. data/solr/ogp-test/conf/velocity/VM_global_library.vm +170 -0
  220. data/solr/ogp-test/conf/velocity/browse.vm +50 -0
  221. data/solr/ogp-test/conf/velocity/cluster.vm +9 -0
  222. data/solr/ogp-test/conf/velocity/clusterResults.vm +12 -0
  223. data/solr/ogp-test/conf/velocity/debug.vm +17 -0
  224. data/solr/ogp-test/conf/velocity/did_you_mean.vm +4 -0
  225. data/solr/ogp-test/conf/velocity/facet_fields.vm +15 -0
  226. data/solr/ogp-test/conf/velocity/facet_pivot.vm +3 -0
  227. data/solr/ogp-test/conf/velocity/facet_queries.vm +3 -0
  228. data/solr/ogp-test/conf/velocity/facet_ranges.vm +15 -0
  229. data/solr/ogp-test/conf/velocity/facets.vm +5 -0
  230. data/solr/ogp-test/conf/velocity/footer.vm +17 -0
  231. data/solr/ogp-test/conf/velocity/head.vm +32 -0
  232. data/solr/ogp-test/conf/velocity/header.vm +3 -0
  233. data/solr/ogp-test/conf/velocity/hit.vm +11 -0
  234. data/solr/ogp-test/conf/velocity/hitGrouped.vm +24 -0
  235. data/solr/ogp-test/conf/velocity/join-doc.vm +4 -0
  236. data/solr/ogp-test/conf/velocity/jquery.autocomplete.css +48 -0
  237. data/solr/ogp-test/conf/velocity/jquery.autocomplete.js +763 -0
  238. data/solr/ogp-test/conf/velocity/layout.vm +20 -0
  239. data/solr/ogp-test/conf/velocity/main.css +208 -0
  240. data/solr/ogp-test/conf/velocity/product-doc.vm +27 -0
  241. data/solr/ogp-test/conf/velocity/query.vm +42 -0
  242. data/solr/ogp-test/conf/velocity/queryGroup.vm +19 -0
  243. data/solr/ogp-test/conf/velocity/querySpatial.vm +40 -0
  244. data/solr/ogp-test/conf/velocity/richtext-doc.vm +114 -0
  245. data/solr/ogp-test/conf/velocity/suggest.vm +3 -0
  246. data/solr/ogp-test/conf/velocity/tabs.vm +6 -0
  247. data/solr/ogp-test/conf/xslt/example.xsl +132 -0
  248. data/solr/ogp-test/conf/xslt/example_atom.xsl +67 -0
  249. data/solr/ogp-test/conf/xslt/example_rss.xsl +66 -0
  250. data/solr/ogp-test/conf/xslt/luke.xsl +337 -0
  251. data/solr/ogp-test/conf/xslt/updateXml.xsl +70 -0
  252. data/solr/ogp-test/deploy.sh +15 -0
  253. data/solr/ogp-test/purge.sh +9 -0
  254. data/solr/ogp-test/upload.sh +17 -0
  255. data/solr/ogp/conf/admin-extra.html +24 -0
  256. data/solr/ogp/conf/admin-extra.menu-bottom.html +25 -0
  257. data/solr/ogp/conf/admin-extra.menu-top.html +25 -0
  258. data/solr/ogp/conf/currency.xml +67 -0
  259. data/solr/ogp/conf/elevate.xml +38 -0
  260. data/solr/ogp/conf/lang/contractions_ca.txt +8 -0
  261. data/solr/ogp/conf/lang/contractions_fr.txt +15 -0
  262. data/solr/ogp/conf/lang/contractions_ga.txt +5 -0
  263. data/solr/ogp/conf/lang/contractions_it.txt +23 -0
  264. data/solr/ogp/conf/lang/hyphenations_ga.txt +5 -0
  265. data/solr/ogp/conf/lang/stemdict_nl.txt +6 -0
  266. data/solr/ogp/conf/lang/stoptags_ja.txt +420 -0
  267. data/solr/ogp/conf/lang/stopwords_ar.txt +125 -0
  268. data/solr/ogp/conf/lang/stopwords_bg.txt +193 -0
  269. data/solr/ogp/conf/lang/stopwords_ca.txt +220 -0
  270. data/solr/ogp/conf/lang/stopwords_cz.txt +172 -0
  271. data/solr/ogp/conf/lang/stopwords_da.txt +108 -0
  272. data/solr/ogp/conf/lang/stopwords_de.txt +292 -0
  273. data/solr/ogp/conf/lang/stopwords_el.txt +78 -0
  274. data/solr/ogp/conf/lang/stopwords_en.txt +54 -0
  275. data/solr/ogp/conf/lang/stopwords_es.txt +354 -0
  276. data/solr/ogp/conf/lang/stopwords_eu.txt +99 -0
  277. data/solr/ogp/conf/lang/stopwords_fa.txt +313 -0
  278. data/solr/ogp/conf/lang/stopwords_fi.txt +95 -0
  279. data/solr/ogp/conf/lang/stopwords_fr.txt +184 -0
  280. data/solr/ogp/conf/lang/stopwords_ga.txt +110 -0
  281. data/solr/ogp/conf/lang/stopwords_gl.txt +161 -0
  282. data/solr/ogp/conf/lang/stopwords_hi.txt +235 -0
  283. data/solr/ogp/conf/lang/stopwords_hu.txt +209 -0
  284. data/solr/ogp/conf/lang/stopwords_hy.txt +46 -0
  285. data/solr/ogp/conf/lang/stopwords_id.txt +359 -0
  286. data/solr/ogp/conf/lang/stopwords_it.txt +301 -0
  287. data/solr/ogp/conf/lang/stopwords_ja.txt +127 -0
  288. data/solr/ogp/conf/lang/stopwords_lv.txt +172 -0
  289. data/solr/ogp/conf/lang/stopwords_nl.txt +117 -0
  290. data/solr/ogp/conf/lang/stopwords_no.txt +192 -0
  291. data/solr/ogp/conf/lang/stopwords_pt.txt +251 -0
  292. data/solr/ogp/conf/lang/stopwords_ro.txt +233 -0
  293. data/solr/ogp/conf/lang/stopwords_ru.txt +241 -0
  294. data/solr/ogp/conf/lang/stopwords_sv.txt +131 -0
  295. data/solr/ogp/conf/lang/stopwords_th.txt +119 -0
  296. data/solr/ogp/conf/lang/stopwords_tr.txt +212 -0
  297. data/solr/ogp/conf/lang/userdict_ja.txt +29 -0
  298. data/solr/ogp/conf/mapping-FoldToASCII.txt +3813 -0
  299. data/solr/ogp/conf/mapping-ISOLatin1Accent.txt +246 -0
  300. data/solr/ogp/conf/protwords.txt +21 -0
  301. data/solr/ogp/conf/schema.xml +1362 -0
  302. data/solr/ogp/conf/scripts.conf +24 -0
  303. data/solr/ogp/conf/solrconfig.xml +1816 -0
  304. data/solr/ogp/conf/spellings.txt +2 -0
  305. data/solr/ogp/conf/stopwords.txt +14 -0
  306. data/solr/ogp/conf/synonyms.txt +29 -0
  307. data/solr/ogp/conf/synonymsIso.txt +158 -0
  308. data/solr/ogp/conf/synonymsLcsh.txt +120 -0
  309. data/solr/ogp/conf/synonymsState.txt +105 -0
  310. data/solr/ogp/conf/update-script.js +53 -0
  311. data/solr/ogp/conf/velocity/VM_global_library.vm +170 -0
  312. data/solr/ogp/conf/velocity/browse.vm +50 -0
  313. data/solr/ogp/conf/velocity/cluster.vm +9 -0
  314. data/solr/ogp/conf/velocity/clusterResults.vm +12 -0
  315. data/solr/ogp/conf/velocity/debug.vm +17 -0
  316. data/solr/ogp/conf/velocity/did_you_mean.vm +4 -0
  317. data/solr/ogp/conf/velocity/facet_fields.vm +15 -0
  318. data/solr/ogp/conf/velocity/facet_pivot.vm +3 -0
  319. data/solr/ogp/conf/velocity/facet_queries.vm +3 -0
  320. data/solr/ogp/conf/velocity/facet_ranges.vm +15 -0
  321. data/solr/ogp/conf/velocity/facets.vm +5 -0
  322. data/solr/ogp/conf/velocity/footer.vm +17 -0
  323. data/solr/ogp/conf/velocity/head.vm +32 -0
  324. data/solr/ogp/conf/velocity/header.vm +3 -0
  325. data/solr/ogp/conf/velocity/hit.vm +11 -0
  326. data/solr/ogp/conf/velocity/hitGrouped.vm +24 -0
  327. data/solr/ogp/conf/velocity/join-doc.vm +4 -0
  328. data/solr/ogp/conf/velocity/jquery.autocomplete.css +48 -0
  329. data/solr/ogp/conf/velocity/jquery.autocomplete.js +763 -0
  330. data/solr/ogp/conf/velocity/layout.vm +20 -0
  331. data/solr/ogp/conf/velocity/main.css +208 -0
  332. data/solr/ogp/conf/velocity/product-doc.vm +27 -0
  333. data/solr/ogp/conf/velocity/query.vm +42 -0
  334. data/solr/ogp/conf/velocity/queryGroup.vm +19 -0
  335. data/solr/ogp/conf/velocity/querySpatial.vm +40 -0
  336. data/solr/ogp/conf/velocity/richtext-doc.vm +114 -0
  337. data/solr/ogp/conf/velocity/suggest.vm +3 -0
  338. data/solr/ogp/conf/velocity/tabs.vm +6 -0
  339. data/solr/ogp/conf/xslt/example.xsl +132 -0
  340. data/solr/ogp/conf/xslt/example_atom.xsl +67 -0
  341. data/solr/ogp/conf/xslt/example_rss.xsl +66 -0
  342. data/solr/ogp/conf/xslt/luke.xsl +337 -0
  343. data/solr/ogp/conf/xslt/updateXml.xsl +70 -0
  344. data/solr/ogp/deploy.sh +15 -0
  345. data/solr/ogp/upload.sh +16 -0
  346. data/spec/fixtures/bw938nk9584/metadata/geoMetadata.xml +2438 -0
  347. data/spec/fixtures/bw938nk9584/temp/TRIPURA-iso19139-fc.xml +1643 -0
  348. data/spec/fixtures/bw938nk9584/temp/TRIPURA-iso19139.xml +790 -0
  349. data/spec/fixtures/cc142xj8436/metadata/geoMetadata.xml +2029 -0
  350. data/spec/fixtures/cc142xj8436/temp/HARYANA-iso19139-fc.xml +1174 -0
  351. data/spec/fixtures/cc142xj8436/temp/HARYANA-iso19139.xml +850 -0
  352. data/spec/fixtures/cg716wc7949/metadata/geoMetadata.xml +1815 -0
  353. data/spec/fixtures/cg716wc7949/temp/metadata.iso19139-fc.xml +958 -0
  354. data/spec/fixtures/cg716wc7949/temp/metadata.iso19139.xml +852 -0
  355. data/spec/fixtures/cm007pv9601/metadata/geoMetadata.xml +1092 -0
  356. data/spec/fixtures/cm007pv9601/temp/MEGHALAYA-iso19139-fc.xml +379 -0
  357. data/spec/fixtures/cm007pv9601/temp/MEGHALAYA-iso19139.xml +708 -0
  358. data/spec/fixtures/cp055nb0189/metadata/geoMetadata.xml +1820 -0
  359. data/spec/fixtures/cp055nb0189/temp/metadata.iso19139-fc.xml +955 -0
  360. data/spec/fixtures/cp055nb0189/temp/metadata.iso19139.xml +860 -0
  361. data/spec/fixtures/cs838pw3418/metadata/geoMetadata.xml +912 -0
  362. data/spec/fixtures/cs838pw3418/temp/OIL_GAS_FIELDS-iso19139-fc.xml +177 -0
  363. data/spec/fixtures/cs838pw3418/temp/OIL_GAS_FIELDS-iso19139.xml +730 -0
  364. data/spec/fixtures/dd308sy5843/metadata/geoMetadata.xml +2438 -0
  365. data/spec/fixtures/dd308sy5843/temp/ORISSA-iso19139-fc.xml +1643 -0
  366. data/spec/fixtures/dd308sy5843/temp/ORISSA-iso19139.xml +790 -0
  367. data/spec/fixtures/dd452vk1873/metadata/geoMetadata.xml +1168 -0
  368. data/spec/fixtures/dd452vk1873/temp/metadata.iso19139-fc.xml +175 -0
  369. data/spec/fixtures/dd452vk1873/temp/metadata.iso19139.xml +988 -0
  370. data/spec/fixtures/dg850pt1796/metadata/geoMetadata.xml +1411 -0
  371. data/spec/fixtures/dg850pt1796/temp/STATE1951-iso19139-fc.xml +519 -0
  372. data/spec/fixtures/dg850pt1796/temp/STATE1951-iso19139.xml +887 -0
  373. data/spec/fixtures/dn744tf5427/metadata/geoMetadata.xml +7403 -0
  374. data/spec/fixtures/dn744tf5427/temp/DISTRICT1991-iso19139-fc.xml +6539 -0
  375. data/spec/fixtures/dn744tf5427/temp/DISTRICT1991-iso19139.xml +859 -0
  376. data/spec/fixtures/dq603nz8402/metadata/geoMetadata.xml +8485 -0
  377. data/spec/fixtures/dq603nz8402/temp/STATE2001-iso19139-fc.xml +7595 -0
  378. data/spec/fixtures/dq603nz8402/temp/STATE2001-iso19139.xml +885 -0
  379. data/spec/fixtures/dv609zt4699/metadata/geoMetadata.xml +3865 -0
  380. data/spec/fixtures/dv609zt4699/temp/ASSAM-iso19139-fc.xml +3075 -0
  381. data/spec/fixtures/dv609zt4699/temp/ASSAM-iso19139.xml +785 -0
  382. data/spec/fixtures/dz222hw0585/metadata/geoMetadata.xml +2057 -0
  383. data/spec/fixtures/dz222hw0585/temp/PUNJAB-iso19139-fc.xml +1203 -0
  384. data/spec/fixtures/dz222hw0585/temp/PUNJAB-iso19139.xml +849 -0
  385. data/spec/fixtures/fd673qb9705/metadata/geoMetadata.xml +4059 -0
  386. data/spec/fixtures/fd673qb9705/temp/STATE1971-iso19139-fc.xml +3159 -0
  387. data/spec/fixtures/fd673qb9705/temp/STATE1971-iso19139.xml +895 -0
  388. data/spec/fixtures/fg451wp8917/metadata/geoMetadata.xml +2435 -0
  389. data/spec/fixtures/fg451wp8917/temp/SIKKIM-iso19139-fc.xml +1643 -0
  390. data/spec/fixtures/fg451wp8917/temp/SIKKIM-iso19139.xml +787 -0
  391. data/spec/fixtures/fh247yz0156/metadata/geoMetadata.xml +2437 -0
  392. data/spec/fixtures/fh247yz0156/temp/RAJASTHAN-iso19139-fc.xml +1643 -0
  393. data/spec/fixtures/fh247yz0156/temp/RAJASTHAN-iso19139.xml +789 -0
  394. data/spec/fixtures/fs487vd1465/metadata/geoMetadata.xml +3896 -0
  395. data/spec/fixtures/fs487vd1465/temp/CHHATTISGARH-iso19139-fc.xml +3075 -0
  396. data/spec/fixtures/fs487vd1465/temp/CHHATTISGARH-iso19139.xml +816 -0
  397. data/spec/fixtures/fs591bn3317/metadata/geoMetadata.xml +2435 -0
  398. data/spec/fixtures/fs591bn3317/temp/HIMACHAL_PRADESH-iso19139-fc.xml +1643 -0
  399. data/spec/fixtures/fs591bn3317/temp/HIMACHAL_PRADESH-iso19139.xml +787 -0
  400. data/spec/fixtures/fw920bc5473/metadata/geoMetadata.xml +1056 -0
  401. data/spec/fixtures/fw920bc5473/temp/PLSS_TWN-iso19139-fc.xml +327 -0
  402. data/spec/fixtures/fw920bc5473/temp/PLSS_TWN-iso19139.xml +724 -0
  403. data/spec/fixtures/gj831wj3625/metadata/geoMetadata.xml +1735 -0
  404. data/spec/fixtures/gj831wj3625/temp/metadata.iso19139-fc.xml +940 -0
  405. data/spec/fixtures/gj831wj3625/temp/metadata.iso19139.xml +790 -0
  406. data/spec/fixtures/gp075nv3265/metadata/geoMetadata.xml +2432 -0
  407. data/spec/fixtures/gp075nv3265/temp/PONDICHERRY-iso19139-fc.xml +1643 -0
  408. data/spec/fixtures/gp075nv3265/temp/PONDICHERRY-iso19139.xml +784 -0
  409. data/spec/fixtures/gv800hj8141/metadata/geoMetadata.xml +2392 -0
  410. data/spec/fixtures/gv800hj8141/temp/BIHAR-iso19139-fc.xml +1643 -0
  411. data/spec/fixtures/gv800hj8141/temp/BIHAR-iso19139.xml +744 -0
  412. data/spec/fixtures/gw520gz6339/metadata/geoMetadata.xml +3899 -0
  413. data/spec/fixtures/gw520gz6339/temp/DADRA_NAGAR_HAVELI_PT-iso19139-fc.xml +3075 -0
  414. data/spec/fixtures/gw520gz6339/temp/DADRA_NAGAR_HAVELI_PT-iso19139.xml +819 -0
  415. data/spec/fixtures/gy054hz1045/metadata/geoMetadata.xml +2418 -0
  416. data/spec/fixtures/gy054hz1045/temp/HARYANA-iso19139-fc.xml +1633 -0
  417. data/spec/fixtures/gy054hz1045/temp/HARYANA-iso19139.xml +780 -0
  418. data/spec/fixtures/gz352mw6982/metadata/geoMetadata.xml +1772 -0
  419. data/spec/fixtures/gz352mw6982/temp/metadata.iso19139-fc.xml +940 -0
  420. data/spec/fixtures/gz352mw6982/temp/metadata.iso19139.xml +827 -0
  421. data/spec/fixtures/hb489vm9892/metadata/geoMetadata.xml +3663 -0
  422. data/spec/fixtures/hb489vm9892/temp/DISTRICT1981-iso19139-fc.xml +2799 -0
  423. data/spec/fixtures/hb489vm9892/temp/DISTRICT1981-iso19139.xml +859 -0
  424. data/spec/fixtures/hw125dq0418/metadata/geoMetadata.xml +2448 -0
  425. data/spec/fixtures/hw125dq0418/temp/DELHI-iso19139-fc.xml +1599 -0
  426. data/spec/fixtures/hw125dq0418/temp/DELHI-iso19139.xml +844 -0
  427. data/spec/fixtures/hw892mn4587/metadata/geoMetadata.xml +2561 -0
  428. data/spec/fixtures/hw892mn4587/temp/KERALA-iso19139-fc.xml +1763 -0
  429. data/spec/fixtures/hw892mn4587/temp/KERALA-iso19139.xml +793 -0
  430. data/spec/fixtures/jb371hz3868/metadata/geoMetadata.xml +3129 -0
  431. data/spec/fixtures/jb371hz3868/temp/INCOME-iso19139-fc.xml +2263 -0
  432. data/spec/fixtures/jb371hz3868/temp/INCOME-iso19139.xml +861 -0
  433. data/spec/fixtures/jc017yk9928/metadata/geoMetadata.xml +2433 -0
  434. data/spec/fixtures/jc017yk9928/temp/KARNATAKA-iso19139-fc.xml +1599 -0
  435. data/spec/fixtures/jc017yk9928/temp/KARNATAKA-iso19139.xml +829 -0
  436. data/spec/fixtures/jf841ys4828/metadata/geoMetadata.xml +2156 -0
  437. data/spec/fixtures/jf841ys4828/temp/ANDHRA_PRADESH-iso19139-fc.xml +1247 -0
  438. data/spec/fixtures/jf841ys4828/temp/ANDHRA_PRADESH-iso19139.xml +904 -0
  439. data/spec/fixtures/jh802mp2160/metadata/geoMetadata.xml +3917 -0
  440. data/spec/fixtures/jh802mp2160/temp/DELHI_PT-iso19139-fc.xml +3075 -0
  441. data/spec/fixtures/jh802mp2160/temp/DELHI_PT-iso19139.xml +837 -0
  442. data/spec/fixtures/jj806fc3801/metadata/geoMetadata.xml +1235 -0
  443. data/spec/fixtures/jj806fc3801/temp/metadata.iso19139-fc.xml +173 -0
  444. data/spec/fixtures/jj806fc3801/temp/metadata.iso19139.xml +1057 -0
  445. data/spec/fixtures/jq835yn7161/metadata/geoMetadata.xml +2060 -0
  446. data/spec/fixtures/jq835yn7161/temp/HIMACHAL_PRADESH-iso19139-fc.xml +1203 -0
  447. data/spec/fixtures/jq835yn7161/temp/HIMACHAL_PRADESH-iso19139.xml +852 -0
  448. data/spec/fixtures/jr455pt6676/metadata/geoMetadata.xml +2045 -0
  449. data/spec/fixtures/jr455pt6676/temp/TAMILNADU-iso19139-fc.xml +1203 -0
  450. data/spec/fixtures/jr455pt6676/temp/TAMILNADU-iso19139.xml +837 -0
  451. data/spec/fixtures/js637zp2537/metadata/geoMetadata.xml +3894 -0
  452. data/spec/fixtures/js637zp2537/temp/BIHAR-iso19139-fc.xml +3075 -0
  453. data/spec/fixtures/js637zp2537/temp/BIHAR-iso19139.xml +814 -0
  454. data/spec/fixtures/jv502wg9611/metadata/geoMetadata.xml +2052 -0
  455. data/spec/fixtures/jv502wg9611/temp/GOA-iso19139-fc.xml +1203 -0
  456. data/spec/fixtures/jv502wg9611/temp/GOA-iso19139.xml +844 -0
  457. data/spec/fixtures/jw462ck6560/metadata/geoMetadata.xml +2442 -0
  458. data/spec/fixtures/jw462ck6560/temp/JAMMU_KASHMIR-iso19139-fc.xml +1643 -0
  459. data/spec/fixtures/jw462ck6560/temp/JAMMU_KASHMIR-iso19139.xml +794 -0
  460. data/spec/fixtures/kj800fb6273/metadata/geoMetadata.xml +3300 -0
  461. data/spec/fixtures/kj800fb6273/temp/STATE2011-iso19139-fc.xml +2403 -0
  462. data/spec/fixtures/kj800fb6273/temp/STATE2011-iso19139.xml +892 -0
  463. data/spec/fixtures/km504zq3948/metadata/geoMetadata.xml +3862 -0
  464. data/spec/fixtures/km504zq3948/temp/HIMACHAL_PRADESH-iso19139-fc.xml +3075 -0
  465. data/spec/fixtures/km504zq3948/temp/HIMACHAL_PRADESH-iso19139.xml +782 -0
  466. data/spec/fixtures/ks297fy1411/metadata/geoMetadata.xml +1043 -0
  467. data/spec/fixtures/ks297fy1411/temp/OFFSH_BLOCKS-iso19139-fc.xml +350 -0
  468. data/spec/fixtures/ks297fy1411/temp/OFFSH_BLOCKS-iso19139.xml +688 -0
  469. data/spec/fixtures/md358hy5049/metadata/geoMetadata.xml +2424 -0
  470. data/spec/fixtures/md358hy5049/temp/MIZORAM-iso19139-fc.xml +1570 -0
  471. data/spec/fixtures/md358hy5049/temp/MIZORAM-iso19139.xml +849 -0
  472. data/spec/fixtures/mg745bq0193/metadata/geoMetadata.xml +2183 -0
  473. data/spec/fixtures/mg745bq0193/temp/MADHYA_PRADESH-iso19139-fc.xml +1383 -0
  474. data/spec/fixtures/mg745bq0193/temp/MADHYA_PRADESH-iso19139.xml +795 -0
  475. data/spec/fixtures/mh187yx3536/metadata/geoMetadata.xml +2447 -0
  476. data/spec/fixtures/mh187yx3536/temp/WEST_BENGAL-iso19139-fc.xml +1643 -0
  477. data/spec/fixtures/mh187yx3536/temp/WEST_BENGAL-iso19139.xml +799 -0
  478. data/spec/fixtures/mk488yn6694/metadata/geoMetadata.xml +2042 -0
  479. data/spec/fixtures/mk488yn6694/temp/GUJARAT-iso19139-fc.xml +1203 -0
  480. data/spec/fixtures/mk488yn6694/temp/GUJARAT-iso19139.xml +834 -0
  481. data/spec/fixtures/my216kp3008/metadata/geoMetadata.xml +2366 -0
  482. data/spec/fixtures/my216kp3008/temp/DELHI-iso19139-fc.xml +1643 -0
  483. data/spec/fixtures/my216kp3008/temp/DELHI-iso19139.xml +718 -0
  484. data/spec/fixtures/my504nz9827/metadata/geoMetadata.xml +2367 -0
  485. data/spec/fixtures/my504nz9827/temp/JAMMU_KASHMIR-iso19139-fc.xml +1519 -0
  486. data/spec/fixtures/my504nz9827/temp/JAMMU_KASHMIR-iso19139.xml +843 -0
  487. data/spec/fixtures/ng819jm8700/metadata/geoMetadata.xml +2496 -0
  488. data/spec/fixtures/ng819jm8700/temp/MANIPUR-iso19139-fc.xml +1643 -0
  489. data/spec/fixtures/ng819jm8700/temp/MANIPUR-iso19139.xml +848 -0
  490. data/spec/fixtures/np020jq2139/metadata/geoMetadata.xml +1153 -0
  491. data/spec/fixtures/np020jq2139/temp/metadata.iso19139-fc.xml +160 -0
  492. data/spec/fixtures/np020jq2139/temp/metadata.iso19139.xml +988 -0
  493. data/spec/fixtures/ns377mt1608/metadata/geoMetadata.xml +7125 -0
  494. data/spec/fixtures/ns377mt1608/temp/STATE1991-iso19139-fc.xml +6283 -0
  495. data/spec/fixtures/ns377mt1608/temp/STATE1991-iso19139.xml +837 -0
  496. data/spec/fixtures/nw926np8508/metadata/geoMetadata.xml +1143 -0
  497. data/spec/fixtures/nw926np8508/temp/metadata.iso19139-fc.xml +160 -0
  498. data/spec/fixtures/nw926np8508/temp/metadata.iso19139.xml +978 -0
  499. data/spec/fixtures/ny358rm8559/metadata/geoMetadata.xml +2459 -0
  500. data/spec/fixtures/ny358rm8559/temp/TRIPURA-iso19139-fc.xml +1599 -0
  501. data/spec/fixtures/ny358rm8559/temp/TRIPURA-iso19139.xml +855 -0
  502. data/spec/fixtures/nz176rm8192/metadata/geoMetadata.xml +2618 -0
  503. data/spec/fixtures/nz176rm8192/temp/DISTRICT2011-iso19139-fc.xml +1813 -0
  504. data/spec/fixtures/nz176rm8192/temp/DISTRICT2011-iso19139.xml +800 -0
  505. data/spec/fixtures/nz252rq2252/metadata/geoMetadata.xml +2387 -0
  506. data/spec/fixtures/nz252rq2252/temp/UTTAR_PRADESH-iso19139-fc.xml +1599 -0
  507. data/spec/fixtures/nz252rq2252/temp/UTTAR_PRADESH-iso19139.xml +783 -0
  508. data/spec/fixtures/pd902kb3348/metadata/geoMetadata.xml +2414 -0
  509. data/spec/fixtures/pd902kb3348/temp/MADHYA_PRADESH-iso19139-fc.xml +1633 -0
  510. data/spec/fixtures/pd902kb3348/temp/MADHYA_PRADESH-iso19139.xml +776 -0
  511. data/spec/fixtures/pz792fz1776/metadata/geoMetadata.xml +2437 -0
  512. data/spec/fixtures/pz792fz1776/temp/MAHARASHTRA-iso19139-fc.xml +1643 -0
  513. data/spec/fixtures/pz792fz1776/temp/MAHARASHTRA-iso19139.xml +789 -0
  514. data/spec/fixtures/qb767ss4042/metadata/geoMetadata.xml +2045 -0
  515. data/spec/fixtures/qb767ss4042/temp/UTTAR_PRADESH-iso19139-fc.xml +1200 -0
  516. data/spec/fixtures/qb767ss4042/temp/UTTAR_PRADESH-iso19139.xml +840 -0
  517. data/spec/fixtures/qc091qw0570/metadata/geoMetadata.xml +2428 -0
  518. data/spec/fixtures/qc091qw0570/temp/GUJARAT-iso19139-fc.xml +1643 -0
  519. data/spec/fixtures/qc091qw0570/temp/GUJARAT-iso19139.xml +780 -0
  520. data/spec/fixtures/qc652vr7204/metadata/geoMetadata.xml +3877 -0
  521. data/spec/fixtures/qc652vr7204/temp/ANDHRA_PRADESH_PT-iso19139-fc.xml +3075 -0
  522. data/spec/fixtures/qc652vr7204/temp/ANDHRA_PRADESH_PT-iso19139.xml +797 -0
  523. data/spec/fixtures/qk786js7484/metadata/geoMetadata.xml +3267 -0
  524. data/spec/fixtures/qk786js7484/temp/DISTRICT1961-iso19139-fc.xml +2403 -0
  525. data/spec/fixtures/qk786js7484/temp/DISTRICT1961-iso19139.xml +859 -0
  526. data/spec/fixtures/qn676pg6767/metadata/geoMetadata.xml +3861 -0
  527. data/spec/fixtures/qn676pg6767/temp/GOA-iso19139-fc.xml +3075 -0
  528. data/spec/fixtures/qn676pg6767/temp/GOA-iso19139.xml +781 -0
  529. data/spec/fixtures/qr255jh4074/metadata/geoMetadata.xml +3226 -0
  530. data/spec/fixtures/qr255jh4074/temp/LOKSABHA_14-iso19139-fc.xml +2366 -0
  531. data/spec/fixtures/qr255jh4074/temp/LOKSABHA_14-iso19139.xml +855 -0
  532. data/spec/fixtures/qr374kj4827/metadata/geoMetadata.xml +2428 -0
  533. data/spec/fixtures/qr374kj4827/temp/ASSAM-iso19139-fc.xml +1643 -0
  534. data/spec/fixtures/qr374kj4827/temp/ASSAM-iso19139.xml +780 -0
  535. data/spec/fixtures/qy162js1748/metadata/geoMetadata.xml +2440 -0
  536. data/spec/fixtures/qy162js1748/temp/CHHATTISGARH-iso19139-fc.xml +1643 -0
  537. data/spec/fixtures/qy162js1748/temp/CHHATTISGARH-iso19139.xml +792 -0
  538. data/spec/fixtures/rd446vf2633/metadata/geoMetadata.xml +1109 -0
  539. data/spec/fixtures/rd446vf2633/temp/NAGALAND-iso19139-fc.xml +379 -0
  540. data/spec/fixtures/rd446vf2633/temp/NAGALAND-iso19139.xml +725 -0
  541. data/spec/fixtures/rf389hf2983/metadata/geoMetadata.xml +3929 -0
  542. data/spec/fixtures/rf389hf2983/temp/CHHATTISGARH_PT-iso19139-fc.xml +3075 -0
  543. data/spec/fixtures/rf389hf2983/temp/CHHATTISGARH_PT-iso19139.xml +849 -0
  544. data/spec/fixtures/rf859ff4582/metadata/geoMetadata.xml +1251 -0
  545. data/spec/fixtures/rf859ff4582/temp/JHARKHAND-iso19139-fc.xml +459 -0
  546. data/spec/fixtures/rf859ff4582/temp/JHARKHAND-iso19139.xml +787 -0
  547. data/spec/fixtures/rh343ds8931/metadata/geoMetadata.xml +2032 -0
  548. data/spec/fixtures/rh343ds8931/temp/BIHAR-iso19139-fc.xml +1174 -0
  549. data/spec/fixtures/rh343ds8931/temp/BIHAR-iso19139.xml +853 -0
  550. data/spec/fixtures/rn815xk8157/metadata/geoMetadata.xml +2417 -0
  551. data/spec/fixtures/rn815xk8157/temp/SIKKIM-iso19139-fc.xml +1563 -0
  552. data/spec/fixtures/rn815xk8157/temp/SIKKIM-iso19139.xml +849 -0
  553. data/spec/fixtures/rq653sz4470/metadata/geoMetadata.xml +2394 -0
  554. data/spec/fixtures/rq653sz4470/temp/CHHATTISGARH-iso19139-fc.xml +1599 -0
  555. data/spec/fixtures/rq653sz4470/temp/CHHATTISGARH-iso19139.xml +790 -0
  556. data/spec/fixtures/rt625ws6022/metadata/geoMetadata.xml +833 -0
  557. data/spec/fixtures/rt625ws6022/temp/GULF_FAIRWAYS-iso19139-fc.xml +144 -0
  558. data/spec/fixtures/rt625ws6022/temp/GULF_FAIRWAYS-iso19139.xml +684 -0
  559. data/spec/fixtures/sc330vf4259/metadata/geoMetadata.xml +1836 -0
  560. data/spec/fixtures/sc330vf4259/temp/JHARKHAND-iso19139-fc.xml +987 -0
  561. data/spec/fixtures/sc330vf4259/temp/JHARKHAND-iso19139.xml +844 -0
  562. data/spec/fixtures/sq479mx3086/metadata/geoMetadata.xml +1043 -0
  563. data/spec/fixtures/sq479mx3086/temp/OFFSH_PLATF-iso19139-fc.xml +365 -0
  564. data/spec/fixtures/sq479mx3086/temp/OFFSH_PLATF-iso19139.xml +673 -0
  565. data/spec/fixtures/sr686bm4098/metadata/geoMetadata.xml +3896 -0
  566. data/spec/fixtures/sr686bm4098/temp/DAMAN_DIU_PT-iso19139-fc.xml +3075 -0
  567. data/spec/fixtures/sr686bm4098/temp/DAMAN_DIU_PT-iso19139.xml +816 -0
  568. data/spec/fixtures/sv303sh5583/metadata/geoMetadata.xml +2395 -0
  569. data/spec/fixtures/sv303sh5583/temp/ARUNACHAL_PRADESH-iso19139-fc.xml +1555 -0
  570. data/spec/fixtures/sv303sh5583/temp/ARUNACHAL_PRADESH-iso19139.xml +835 -0
  571. data/spec/fixtures/sy319nh8520/metadata/geoMetadata.xml +3925 -0
  572. data/spec/fixtures/sy319nh8520/temp/GUJARAT-iso19139-fc.xml +3075 -0
  573. data/spec/fixtures/sy319nh8520/temp/GUJARAT-iso19139.xml +845 -0
  574. data/spec/fixtures/td363vx2792/metadata/geoMetadata.xml +3964 -0
  575. data/spec/fixtures/td363vx2792/temp/HIMACHAL_PRADESH_PT-iso19139-fc.xml +3075 -0
  576. data/spec/fixtures/td363vx2792/temp/HIMACHAL_PRADESH_PT-iso19139.xml +884 -0
  577. data/spec/fixtures/tf374bd2484/metadata/geoMetadata.xml +1464 -0
  578. data/spec/fixtures/tf374bd2484/temp/DISTRICT1951-iso19139-fc.xml +599 -0
  579. data/spec/fixtures/tf374bd2484/temp/DISTRICT1951-iso19139.xml +860 -0
  580. data/spec/fixtures/tj797mj7877/metadata/geoMetadata.xml +2359 -0
  581. data/spec/fixtures/tj797mj7877/temp/LOKSABHA_15-iso19139-fc.xml +1511 -0
  582. data/spec/fixtures/tj797mj7877/temp/LOKSABHA_15-iso19139.xml +843 -0
  583. data/spec/fixtures/tv060wq5179/metadata/geoMetadata.xml +2046 -0
  584. data/spec/fixtures/tv060wq5179/temp/ASSAM-iso19139-fc.xml +1203 -0
  585. data/spec/fixtures/tv060wq5179/temp/ASSAM-iso19139.xml +838 -0
  586. data/spec/fixtures/tv536bn1915/metadata/geoMetadata.xml +2296 -0
  587. data/spec/fixtures/tv536bn1915/temp/ARUNACHAL_PRADESH-iso19139-fc.xml +1687 -0
  588. data/spec/fixtures/tv536bn1915/temp/ARUNACHAL_PRADESH-iso19139.xml +604 -0
  589. data/spec/fixtures/tz359cc2977/metadata/geoMetadata.xml +1842 -0
  590. data/spec/fixtures/tz359cc2977/temp/MANIPUR-iso19139-fc.xml +987 -0
  591. data/spec/fixtures/tz359cc2977/temp/MANIPUR-iso19139.xml +850 -0
  592. data/spec/fixtures/vb525my6511/metadata/geoMetadata.xml +2026 -0
  593. data/spec/fixtures/vb525my6511/temp/UTTARAKHAND-iso19139-fc.xml +1167 -0
  594. data/spec/fixtures/vb525my6511/temp/UTTARAKHAND-iso19139.xml +854 -0
  595. data/spec/fixtures/vh802fs4240/metadata/geoMetadata.xml +2189 -0
  596. data/spec/fixtures/vh802fs4240/temp/PONDICHERRY-iso19139-fc.xml +1343 -0
  597. data/spec/fixtures/vh802fs4240/temp/PONDICHERRY-iso19139.xml +841 -0
  598. data/spec/fixtures/vk120xn2474/metadata/geoMetadata.xml +1125 -0
  599. data/spec/fixtures/vk120xn2474/temp/PLSS_SEC-iso19139-fc.xml +435 -0
  600. data/spec/fixtures/vk120xn2474/temp/PLSS_SEC-iso19139.xml +685 -0
  601. data/spec/fixtures/vn439bc7316/metadata/geoMetadata.xml +1979 -0
  602. data/spec/fixtures/vn439bc7316/temp/KERALA-iso19139-fc.xml +1131 -0
  603. data/spec/fixtures/vn439bc7316/temp/KERALA-iso19139.xml +843 -0
  604. data/spec/fixtures/vq745jk0695/metadata/geoMetadata.xml +1787 -0
  605. data/spec/fixtures/vq745jk0695/temp/MEGHALAYA-iso19139-fc.xml +987 -0
  606. data/spec/fixtures/vq745jk0695/temp/MEGHALAYA-iso19139.xml +795 -0
  607. data/spec/fixtures/vr593vj7147/metadata/geoMetadata.xml +3895 -0
  608. data/spec/fixtures/vr593vj7147/temp/ANDHRA_PRADESH-iso19139-fc.xml +3075 -0
  609. data/spec/fixtures/vr593vj7147/temp/ANDHRA_PRADESH-iso19139.xml +815 -0
  610. data/spec/fixtures/vw911qb5271/metadata/geoMetadata.xml +8557 -0
  611. data/spec/fixtures/vw911qb5271/temp/DISTRICT2001-iso19139-fc.xml +7683 -0
  612. data/spec/fixtures/vw911qb5271/temp/DISTRICT2001-iso19139.xml +869 -0
  613. data/spec/fixtures/wg680pz0365/metadata/geoMetadata.xml +2475 -0
  614. data/spec/fixtures/wg680pz0365/temp/ANDHRA_PRADESH-iso19139-fc.xml +1599 -0
  615. data/spec/fixtures/wg680pz0365/temp/ANDHRA_PRADESH-iso19139.xml +871 -0
  616. data/spec/fixtures/wg761xn1926/metadata/geoMetadata.xml +3941 -0
  617. data/spec/fixtures/wg761xn1926/temp/HARYANA-iso19139-fc.xml +3075 -0
  618. data/spec/fixtures/wg761xn1926/temp/HARYANA-iso19139.xml +861 -0
  619. data/spec/fixtures/wh870qw1934/metadata/geoMetadata.xml +2428 -0
  620. data/spec/fixtures/wh870qw1934/temp/PUNJAB-iso19139-fc.xml +1643 -0
  621. data/spec/fixtures/wh870qw1934/temp/PUNJAB-iso19139.xml +780 -0
  622. data/spec/fixtures/wk775mm4673/metadata/geoMetadata.xml +2458 -0
  623. data/spec/fixtures/wk775mm4673/temp/MAHARASHTRA-iso19139-fc.xml +1599 -0
  624. data/spec/fixtures/wk775mm4673/temp/MAHARASHTRA-iso19139.xml +854 -0
  625. data/spec/fixtures/ws171yz2165/metadata/geoMetadata.xml +3868 -0
  626. data/spec/fixtures/ws171yz2165/temp/ARUNACHAL_PRADESH_PT-iso19139-fc.xml +3075 -0
  627. data/spec/fixtures/ws171yz2165/temp/ARUNACHAL_PRADESH_PT-iso19139.xml +788 -0
  628. data/spec/fixtures/wt473hz7153/metadata/geoMetadata.xml +3898 -0
  629. data/spec/fixtures/wt473hz7153/temp/CHANDIGARH_PT-iso19139-fc.xml +3075 -0
  630. data/spec/fixtures/wt473hz7153/temp/CHANDIGARH_PT-iso19139.xml +818 -0
  631. data/spec/fixtures/ww217dj0457/metadata/geoMetadata.xml +1205 -0
  632. data/spec/fixtures/ww217dj0457/temp/CO2_PIPE-iso19139-fc.xml +471 -0
  633. data/spec/fixtures/ww217dj0457/temp/CO2_PIPE-iso19139.xml +729 -0
  634. data/spec/fixtures/wy875pk9849/metadata/geoMetadata.xml +3173 -0
  635. data/spec/fixtures/wy875pk9849/temp/STATE1961-iso19139-fc.xml +2279 -0
  636. data/spec/fixtures/wy875pk9849/temp/STATE1961-iso19139.xml +889 -0
  637. data/spec/fixtures/xb018tk2042/metadata/geoMetadata.xml +2335 -0
  638. data/spec/fixtures/xb018tk2042/temp/STATE1981-iso19139-fc.xml +1443 -0
  639. data/spec/fixtures/xb018tk2042/temp/STATE1981-iso19139.xml +887 -0
  640. data/spec/fixtures/xg539vw8586/metadata/geoMetadata.xml +2405 -0
  641. data/spec/fixtures/xg539vw8586/temp/ORISSA-iso19139-fc.xml +1599 -0
  642. data/spec/fixtures/xg539vw8586/temp/ORISSA-iso19139.xml +801 -0
  643. data/spec/fixtures/xv475kp4644/metadata/geoMetadata.xml +3871 -0
  644. data/spec/fixtures/xv475kp4644/temp/ASSAM_PT-iso19139-fc.xml +3075 -0
  645. data/spec/fixtures/xv475kp4644/temp/ASSAM_PT-iso19139.xml +791 -0
  646. data/spec/fixtures/xy096gc2959/metadata/geoMetadata.xml +2432 -0
  647. data/spec/fixtures/xy096gc2959/temp/GOA-iso19139-fc.xml +1643 -0
  648. data/spec/fixtures/xy096gc2959/temp/GOA-iso19139.xml +784 -0
  649. data/spec/fixtures/xz518gz3362/metadata/geoMetadata.xml +2434 -0
  650. data/spec/fixtures/xz518gz3362/temp/UTTARAKHAND-iso19139-fc.xml +1643 -0
  651. data/spec/fixtures/xz518gz3362/temp/UTTARAKHAND-iso19139.xml +786 -0
  652. data/spec/fixtures/yh986wy4737/metadata/geoMetadata.xml +1160 -0
  653. data/spec/fixtures/yh986wy4737/temp/NAGALAND-iso19139-fc.xml +384 -0
  654. data/spec/fixtures/yh986wy4737/temp/NAGALAND-iso19139.xml +771 -0
  655. data/spec/fixtures/yn187fq4474/metadata/geoMetadata.xml +2168 -0
  656. data/spec/fixtures/yn187fq4474/temp/KARNATAKA-iso19139-fc.xml +1379 -0
  657. data/spec/fixtures/yn187fq4474/temp/KARNATAKA-iso19139.xml +784 -0
  658. data/spec/fixtures/yn236mw3250/metadata/geoMetadata.xml +2428 -0
  659. data/spec/fixtures/yn236mw3250/temp/TAMILNADU-iso19139-fc.xml +1643 -0
  660. data/spec/fixtures/yn236mw3250/temp/TAMILNADU-iso19139.xml +780 -0
  661. data/spec/fixtures/yz596nz0112/metadata/geoMetadata.xml +2012 -0
  662. data/spec/fixtures/yz596nz0112/temp/WEST_BENGAL-iso19139-fc.xml +1203 -0
  663. data/spec/fixtures/yz596nz0112/temp/WEST_BENGAL-iso19139.xml +804 -0
  664. data/spec/fixtures/zk596gy7380/metadata/geoMetadata.xml +4147 -0
  665. data/spec/fixtures/zk596gy7380/temp/DISTRICT1971-iso19139-fc.xml +3283 -0
  666. data/spec/fixtures/zk596gy7380/temp/DISTRICT1971-iso19139.xml +859 -0
  667. data/spec/fixtures/zn452hh7431/metadata/geoMetadata.xml +2337 -0
  668. data/spec/fixtures/zn452hh7431/temp/RAJASTHAN-iso19139-fc.xml +1505 -0
  669. data/spec/fixtures/zn452hh7431/temp/RAJASTHAN-iso19139.xml +827 -0
  670. data/spec/fixtures/zt093fw6519/metadata/geoMetadata.xml +2380 -0
  671. data/spec/fixtures/zt093fw6519/temp/MIZORAM-iso19139-fc.xml +1643 -0
  672. data/spec/fixtures/zt093fw6519/temp/MIZORAM-iso19139.xml +732 -0
  673. data/spec/fixtures/zv925hd6723/metadata/geoMetadata.xml +1473 -0
  674. data/spec/fixtures/zv925hd6723/temp/OGWELLS-iso19139-fc.xml +759 -0
  675. data/spec/fixtures/zv925hd6723/temp/OGWELLS-iso19139.xml +709 -0
  676. data/spec/fixtures/zy658cr1728/metadata/geoMetadata.xml +3814 -0
  677. data/spec/fixtures/zy658cr1728/temp/ANDAMAAN_NICOBAR_PT-iso19139-fc.xml +3075 -0
  678. data/spec/fixtures/zy658cr1728/temp/ANDAMAAN_NICOBAR_PT-iso19139.xml +734 -0
  679. data/spec/fixtures/zz943vx1492/metadata/geoMetadata.xml +861 -0
  680. data/spec/fixtures/zz943vx1492/temp/BASINS-iso19139-fc.xml +164 -0
  681. data/spec/fixtures/zz943vx1492/temp/BASINS-iso19139.xml +692 -0
  682. data/spec/integration/solr_spec_notready.rb +51 -0
  683. data/spec/test_net_ssh_krb.rb +21 -0
  684. data/spec/unit/gazetteer_spec.rb +100 -0
  685. data/spec/unit/transform_spec.rb +40 -0
  686. data/spec/unit/utils_spec.rb +32 -0
  687. metadata +1491 -0
@@ -0,0 +1,22 @@
1
+ #!/usr/bin/env ruby
2
+ require 'uri'
3
+
4
+ h = 'kurma-podt1.stanford.edu'
5
+ ARGV.each do |druid|
6
+ x = '20037508'
7
+ url = URI("http://#{h}/geoserver/gwc/service/wms")
8
+ url.query = URI.encode_www_form(
9
+ 'LAYERS' => "druid:#{druid}",
10
+ 'FORMAT' => 'image/jpeg',
11
+ 'SERVICE' => 'WMS',
12
+ 'VERSION' => '1.1.1',
13
+ 'REQUEST' => 'GetMap',
14
+ 'STYLES' => '',
15
+ 'SRS' => 'EPSG:900913',
16
+ 'BBOX' => "-#{x},-#{x},#{x},#{x}",
17
+ 'WIDTH' => '256',
18
+ 'HEIGHT' => '256'
19
+ )
20
+
21
+ puts "curl -o '/tmp/#{druid}.jpg' '#{url}'"
22
+ end
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'json'
4
+
5
+ n = 0
6
+ puts '<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">'
7
+ Dir.glob('/Volumes/Geo3TB/document_cache/??/???/??/????/mods') do |fn|
8
+ # puts fn
9
+ if fn =~ %r{(../\d\d\d/../\d\d\d\d)/mods$}
10
+ druid = $1.gsub(/\//, '')
11
+ else
12
+ raise ArgumentError, fn
13
+ end
14
+ s = File.read(fn)
15
+ if s =~ %r{(<subject>\s*<cartographics>.*<coordinates>.*</coordinates>.*</cartographics>\s*</subject>)}mi
16
+ puts "<rdf:Description rdf:about=\"#{druid}\">"
17
+ puts $1
18
+ puts '</rdf:Description>'
19
+ n = n + 1
20
+ end
21
+ end
22
+ puts '</rdf:RDF>'
23
+ STDERR.puts "Wrote #{n} records"
@@ -0,0 +1,52 @@
1
+ <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gml="http://www.opengis.net/gml" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:gmi="http://www.isotc211.org/2005/gmi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <!--
3
+ Created: Sept 15, 2009, AMilan -
4
+ Used to display content of tags and test for @nilReason, @indeterminatePosition, replace single quotes and endash
5
+ -->
6
+ <xsl:strip-space elements="*"/>
7
+ <xsl:param name="singleQuote">&#39;</xsl:param>
8
+ <xsl:param name="rightQuote">&#8217;</xsl:param>
9
+ <xsl:param name="enDash">–</xsl:param>
10
+ <xsl:param name="normalDash">-</xsl:param>
11
+ <xsl:template name="displayElement" match="/">
12
+ <xsl:variable name="value">
13
+ <xsl:choose>
14
+ <xsl:when test="contains(normalize-space(.),$singleQuote)">
15
+ <xsl:variable name="value1">
16
+ <xsl:value-of select="translate(normalize-space(.), $singleQuote, $rightQuote)"/>
17
+ </xsl:variable>
18
+ <xsl:choose>
19
+ <xsl:when test="contains($value1,$enDash)">
20
+ <xsl:value-of select="translate($value1, $enDash, $normalDash)"/>
21
+ </xsl:when>
22
+ <xsl:otherwise>
23
+ <xsl:value-of select="$value1"/>
24
+ </xsl:otherwise>
25
+ </xsl:choose>
26
+ </xsl:when>
27
+ <xsl:when test="contains(normalize-space(.),$enDash)">
28
+ <xsl:value-of select="translate(normalize-space(.), $enDash, $normalDash)"/>
29
+ </xsl:when>
30
+ <xsl:otherwise>
31
+ <xsl:value-of select="normalize-space(.)"/>
32
+ </xsl:otherwise>
33
+ </xsl:choose>
34
+ </xsl:variable>
35
+ <xsl:choose>
36
+ <xsl:when test="./@gco:nilReason"> (<xsl:value-of select="local-name(.)"/><xsl:text> is </xsl:text><xsl:value-of select="./@gco:nilReason"/>) </xsl:when>
37
+ <xsl:when test="./@indeterminatePosition">
38
+ <xsl:value-of select="./@indeterminatePosition"/>
39
+ <xsl:text> </xsl:text>
40
+ <xsl:value-of select="$value"/>
41
+ </xsl:when>
42
+ <xsl:when test="./@xlink:href"> &lt;a href=&quot;<xsl:value-of select="normalize-space(./@xlink:href)"/><xsl:value-of select="normalize-space(./@xlink:href)"/></xsl:when>
43
+ <xsl:when test="./gco:Boolean">
44
+ <xsl:if test="./gco:Boolean='false'">No</xsl:if>
45
+ <xsl:if test="./gco:Boolean='true'">Yes</xsl:if>
46
+ </xsl:when>
47
+ <xsl:otherwise>
48
+ <xsl:value-of select="$value"/>
49
+ </xsl:otherwise>
50
+ </xsl:choose>
51
+ </xsl:template>
52
+ </xsl:stylesheet>
@@ -0,0 +1,665 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <names xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gmi="http://www.isotc211.org/2005/gmi">
3
+ <name tagname="gmd:abstract">Abstract</name>
4
+ <name tagname="gmd:accessConstraints">Access constraints</name>
5
+ <name tagname="gmd:address">Address</name>
6
+ <name tagname="gmd:administrativeArea">Administrative area</name>
7
+ <name tagname="gmd:aggregateDataSetIdentifier">Aggregate Data Set Identifier</name>
8
+ <name tagname="gmd:aggregateDataSetName">Aggregate Data Set Name</name>
9
+ <name tagname="gmd:aggregationInfo">Aggregation Info</name>
10
+ <name tagname="gmd:alternateTitle">Alternate title</name>
11
+ <name tagname="gmd:amendmentNumber">Amendment number</name>
12
+ <name tagname="gmd:applicationProfile">Application profile</name>
13
+ <name tagname="gmd:applicationSchemaInfo">Application schema info</name>
14
+ <name tagname="gmd:associationType">Association Type</name>
15
+ <name tagname="gmd:attributeDescription">Attribute description</name>
16
+ <name tagname="gmd:attributeInstances">Attribute instances</name>
17
+ <name tagname="gmd:attributes">Attributes</name>
18
+ <name tagname="gmd:authority">Authority</name>
19
+ <name tagname="gmd:axisDimensionProperties">Axis Dimension Properties</name>
20
+ <name tagname="gmd:bitsPerValue">Bits per value</name>
21
+ <name tagname="gmd:cameraCalibrationInformationAvailability">Camera calibration information availability</name>
22
+ <name tagname="gmd:cellGeometry">Cell geometry</name>
23
+ <name tagname="gmd:centerPoint">Center point</name>
24
+ <name tagname="gmd:characterEncoding">Character Encoding</name>
25
+ <name tagname="gmd:characterSet">Character set</name>
26
+ <name tagname="gmd:checkPointAvailability">Check point availability</name>
27
+ <name tagname="gmd:checkPointDescription">Check point description</name>
28
+ <name tagname="gmd:CI_Address">Address</name>
29
+ <name tagname="gmd:CI_Citation">Citation</name>
30
+ <name tagname="gmd:CI_Contact">Contact</name>
31
+ <name tagname="gmd:CI_Date">Date</name>
32
+ <name tagname="gmd:CI_DateTypeCode">Date type code</name>
33
+ <name tagname="gmd:CI_OnLineFunctionCode">Online function code</name>
34
+ <name tagname="gmd:CI_OnlineResource">Online Resource</name>
35
+ <name tagname="gmd:CI_PresentationFormCode">Presentation form code</name>
36
+ <name tagname="gmd:CI_ResponsibleParty">Responsible party</name>
37
+ <name tagname="gmd:CI_RoleCode">Role code</name>
38
+ <name tagname="gmd:CI_Series">Series</name>
39
+ <name tagname="gmd:CI_Telephone">Telephone</name>
40
+ <name tagname="gmd:citation">Citation</name>
41
+ <name tagname="gmd:citedResponsibleParty">Cited responsible party</name>
42
+ <name tagname="gmd:city">City</name>
43
+ <name tagname="gmd:classification">Classification</name>
44
+ <name tagname="gmd:classificationSystem">Classification system</name>
45
+ <name tagname="gmd:cloudCoverPercentage">Cloud cover percentage</name>
46
+ <name tagname="gmd:code">Code</name>
47
+ <name tagname="gmd:codeSpace">Code Space</name>
48
+ <name tagname="gmd:collectiveTitle">Collective title</name>
49
+ <name tagname="gmd:complianceCode">Compliance code</name>
50
+ <name tagname="gmd:composedOf">Composed of</name>
51
+ <name tagname="gmd:compressionGenerationQuantity">Compression generation quantity</name>
52
+ <name tagname="gmd:condition">Condition</name>
53
+ <name tagname="gmd:constraintLanguage">Constraint language</name>
54
+ <name tagname="gmd:contact">Metadata author</name>
55
+ <name tagname="gmd:contact">Metadata author</name>
56
+ <name tagname="gmd:contactInfo">Contact info</name>
57
+ <name tagname="gmd:contactInstructions">Contact instructions</name>
58
+ <name tagname="gmd:contentInfo">Content info</name>
59
+ <name tagname="gmd:contentType">Content type</name>
60
+ <name tagname="gmd:controlPointAvailability">Control point availability</name>
61
+ <name tagname="gmd:cornerPoints">Corner points</name>
62
+ <name tagname="gmd:Country">Country</name>
63
+ <name tagname="gmd:country">Country</name>
64
+ <name tagname="gmd:country">Country</name>
65
+ <name tagname="gmd:credit">Credit</name>
66
+ <name tagname="gmd:dataQualityInfo">Data quality info</name>
67
+ <name tagname="gmd:dataset">Dataset Set</name>
68
+ <name tagname="gmd:dataSetURI">Dataset URI</name>
69
+ <name tagname="gmd:dataType">Data type</name>
70
+ <name tagname="gmd:date">Date</name>
71
+ <name tagname="gmd:dateOfNextUpdate">Date of next update</name>
72
+ <name tagname="gmd:dateStamp">Date stamp</name>
73
+ <name tagname="gmd:dateTime">Date and time</name>
74
+ <name tagname="gmd:dateType">Date type</name>
75
+ <name tagname="gmd:definition">Definition</name>
76
+ <name tagname="gmd:deliveryPoint">Delivery point</name>
77
+ <name tagname="gmd:denominator">Denominator</name>
78
+ <name tagname="gmd:density">Density</name>
79
+ <name tagname="gmd:densityUnits">Density units</name>
80
+ <name tagname="gmd:describes">Describes</name>
81
+ <name tagname="gmd:description">Description</name>
82
+ <name tagname="gmd:descriptiveKeywords">Descriptive keywords</name>
83
+ <name tagname="gmd:descriptor">Descriptor</name>
84
+ <name tagname="gmd:dimension">Dimension</name>
85
+ <name tagname="gmd:dimensionName">Dimension name</name>
86
+ <name tagname="gmd:dimensionSize">Dimension size</name>
87
+ <name tagname="gmd:distance">Distance</name>
88
+ <name tagname="gmd:distributionFormat">Distribution format</name>
89
+ <name tagname="gmd:distributionInfo">Distribution info</name>
90
+ <name tagname="gmd:distributionOrderProcess">Distribution Order Process</name>
91
+ <name tagname="gmd:distributor">Distributor</name>
92
+ <name tagname="gmd:distributorContact">Distributor contact</name>
93
+ <name tagname="gmd:distributorFormat">Distributor format</name>
94
+ <name tagname="gmd:distributorTransferOptions">Distributor transfer options</name>
95
+ <name tagname="gmd:domainCode">Domain code</name>
96
+ <name tagname="gmd:domainOfValidity">Domain of validity</name>
97
+ <name tagname="gmd:domainValue">Domain value</name>
98
+ <name tagname="gmd:DQ_AbsoluteExternalPositionalAccuracy">Absolute external positional accuracy</name>
99
+ <name tagname="gmd:DQ_AccuracyOfATimeMeasurement">Accuracy of time measurement</name>
100
+ <name tagname="gmd:DQ_CompletenessCommission">Completeness commission</name>
101
+ <name tagname="gmd:DQ_CompletenessOmission">Completeness omission</name>
102
+ <name tagname="gmd:DQ_ConceptualConsistency">Conceptual consistency</name>
103
+ <name tagname="gmd:DQ_ConformanceResult">Conformance result</name>
104
+ <name tagname="gmd:DQ_DataQuality">Data quality</name>
105
+ <name tagname="gmd:DQ_DomainConsistency">Domain consistency</name>
106
+ <name tagname="gmd:DQ_EvaluationMethodTypeCode">Evaluation method type code</name>
107
+ <name tagname="gmd:DQ_FormatConsistency">Format consistency</name>
108
+ <name tagname="gmd:DQ_GriddedDataPositionalAccuracy">Gridded data positional accuracy</name>
109
+ <name tagname="gmd:DQ_NonQuantitativeAttributeAccuracy">Non quantitative attribute accuracy</name>
110
+ <name tagname="gmd:DQ_QuantitativeAttributeAccuracy">Quantitative attribute accuracy</name>
111
+ <name tagname="gmd:DQ_QuantitativeResult">Quantitative result</name>
112
+ <name tagname="gmd:DQ_RelativeInternalPositionalAccuracy">Relative internal positional accuracy</name>
113
+ <name tagname="gmd:DQ_Scope">Scope</name>
114
+ <name tagname="gmd:DQ_TemporalConsistency">Temporal consistency</name>
115
+ <name tagname="gmd:DQ_TemporalValidity">Temporal validity</name>
116
+ <name tagname="gmd:DQ_ThematicClassificationCorrectness">Thematic classification correctness</name>
117
+ <name tagname="gmd:DQ_TopologicalConsistency">Topological consistency</name>
118
+ <name tagname="gmd:DS_Association">Association</name>
119
+ <name tagname="gmd:DS_AssociationTypeCode">Association type code</name>
120
+ <name tagname="gmd:DS_AssociationTypeCode">Association type code</name>
121
+ <name tagname="gmd:DS_DataSet">DataSet</name>
122
+ <name tagname="gmd:DS_Initiative">Initiative</name>
123
+ <name tagname="gmd:DS_InitiativeTypeCode">Initiative type code</name>
124
+ <name tagname="gmd:DS_OtherAggregate">Other Aggregate</name>
125
+ <name tagname="gmd:DS_Platform">Platform</name>
126
+ <name tagname="gmd:DS_ProductionSeries">Production Series</name>
127
+ <name tagname="gmd:DS_Sensor">Sensor</name>
128
+ <name tagname="gmd:DS_Series">Series</name>
129
+ <name tagname="gmd:DS_StereoMate">Stereo Mate</name>
130
+ <name tagname="gmd:eastBoundLongitude">East bound longitude</name>
131
+ <name tagname="gmd:edition">Edition</name>
132
+ <name tagname="gmd:editionDate">Edition date</name>
133
+ <name tagname="gmd:electronicMailAddress">Electronic mail address</name>
134
+ <name tagname="gmd:environmentDescription">Environment description</name>
135
+ <name tagname="gmd:equivalentScale">Equivalent scale</name>
136
+ <name tagname="gmd:errorStatistic">Error statistic</name>
137
+ <name tagname="gmd:evaluationMethodDescription">Evaluation method description</name>
138
+ <name tagname="gmd:evaluationMethodType">Evaluation method type code</name>
139
+ <name tagname="gmd:evaluationProcedure">Evaluation procedure</name>
140
+ <name tagname="gmd:EX_BoundingPolygon">BoundingPolygon</name>
141
+ <name tagname="gmd:EX_Extent">Extent</name>
142
+ <name tagname="gmd:EX_GeographicBoundingBox">Geographic bounding box</name>
143
+ <name tagname="gmd:EX_GeographicDescription">Geographic description</name>
144
+ <name tagname="gmd:EX_SpatialTemporalExtent">Spatial Temporal Extent</name>
145
+ <name tagname="gmd:EX_TemporalExtent">Temporal extent</name>
146
+ <name tagname="gmd:EX_VerticalExtent">Vertical extent</name>
147
+ <name tagname="gmd:explanation">Explanation</name>
148
+ <name tagname="gmd:extendedElementInformation">Extended element information</name>
149
+ <name tagname="gmd:extensionOnLineResource">Extension Online resource</name>
150
+ <name tagname="gmd:extent">Extent</name>
151
+ <name tagname="gmd:extentTypeCode">Extent type code</name>
152
+ <name tagname="gmd:facsimile">Facsimile</name>
153
+ <name tagname="gmd:featureAttribute">Feature Attribute</name>
154
+ <name tagname="gmd:featureCatalogueCitation">Feature catalogue citation</name>
155
+ <name tagname="gmd:featureInstances">Feature instances</name>
156
+ <name tagname="gmd:features">Features</name>
157
+ <name tagname="gmd:featureType">FeatureType</name>
158
+ <name tagname="gmd:featureTypes">Feature types</name>
159
+ <name tagname="gmd:fees">Fees</name>
160
+ <name tagname="gmd:fileDecompressionTechnique">File decompression technique</name>
161
+ <name tagname="gmd:fileDescription">File description</name>
162
+ <name tagname="gmd:fileIdentifier">File identifier</name>
163
+ <name tagname="gmd:fileName">File name</name>
164
+ <name tagname="gmd:fileType">File type</name>
165
+ <name tagname="gmd:filmDistortionInformationAvailability">Film distortion information availability</name>
166
+ <name tagname="gmd:formatDistributor">Format distributor</name>
167
+ <name tagname="gmd:function">Function</name>
168
+ <name tagname="gmd:geographicElement">Geographic element</name>
169
+ <name tagname="gmd:geographicIdentifier">Geographic identifier</name>
170
+ <name tagname="gmd:geometricObjectCount">Geometric object count</name>
171
+ <name tagname="gmd:geometricObjects">Geometric objects</name>
172
+ <name tagname="gmd:geometricObjectType">Geometric object type</name>
173
+ <name tagname="gmd:georeferencedParameters">Georeferenced Parameters</name>
174
+ <name tagname="gmd:graphicOverview">Graphic overview</name>
175
+ <name tagname="gmd:graphicsFile">Graphics file</name>
176
+ <name tagname="gmd:handlingDescription">Handling description</name>
177
+ <name tagname="gmd:has">has</name>
178
+ <name tagname="gmd:hierarchyLevel">Hierarchy level</name>
179
+ <name tagname="gmd:hierarchyLevelName">Hierarchy level name</name>
180
+ <name tagname="gmd:hoursOfService">Hours of service</name>
181
+ <name tagname="gmd:identificationInfo">Identification info</name>
182
+ <name tagname="gmd:identifier">Identifier</name>
183
+ <name tagname="gmd:illuminationAzimuthAngle">Illumination azimuth angle</name>
184
+ <name tagname="gmd:illuminationElevationAngle">Illumination elevation angle</name>
185
+ <name tagname="gmd:imageQualityCode">Image quality code</name>
186
+ <name tagname="gmd:imagingCondition">Imaging condition</name>
187
+ <name tagname="gmd:includedWithDataset">Included with dataset</name>
188
+ <name tagname="gmd:individualName">Individual name</name>
189
+ <name tagname="gmd:initiativeType">Initiative Type</name>
190
+ <name tagname="gmd:ISBN">ISBN</name>
191
+ <name tagname="gmd:ISSN">ISSN</name>
192
+ <name tagname="gmd:issueIdentification">Issue identification</name>
193
+ <name tagname="gmd:keyword">Keyword</name>
194
+ <name tagname="gmd:language">Language</name>
195
+ <name tagname="gmd:LanguageCode">Language Code</name>
196
+ <name tagname="gmd:languageCode">Language code</name>
197
+ <name tagname="gmd:lensDistortionInformationAvailability">Lens distortion information availability</name>
198
+ <name tagname="gmd:level">Hierarchy level</name>
199
+ <name tagname="gmd:levelDescription">Level description</name>
200
+ <name tagname="gmd:LI_Lineage">Lineage</name>
201
+ <name tagname="gmd:LI_ProcessStep">Process step</name>
202
+ <name tagname="gmd:LI_Source">Source</name>
203
+ <name tagname="gmd:lineage">Lineage</name>
204
+ <name tagname="gmd:linkage">Linkage</name>
205
+ <name tagname="gmd:locale">Locale</name>
206
+ <name tagname="gmd:LocalisedCharacterString">Localised Character String</name>
207
+ <name tagname="gmd:localisedString">Localised String</name>
208
+ <name tagname="gmd:maintenanceAndUpdateFrequency">Maintenance and update frequency</name>
209
+ <name tagname="gmd:maintenanceNote">Maintenance note</name>
210
+ <name tagname="gmd:maximumOccurrence">Maximum occurrence</name>
211
+ <name tagname="gmd:maximumValue">Maximum value</name>
212
+ <name tagname="gmd:maxValue">Maximum value</name>
213
+ <name tagname="gmd:MD_AggregateInformation">AggregateInformation</name>
214
+ <name tagname="gmd:MD_ApplicationSchemaInformation">Application schema info</name>
215
+ <name tagname="gmd:MD_Band">Band</name>
216
+ <name tagname="gmd:MD_BrowseGraphic">BrowseGraphic</name>
217
+ <name tagname="gmd:MD_CellGeometryCode">Cell geometry code</name>
218
+ <name tagname="gmd:MD_CharacterSetCode">Character set code</name>
219
+ <name tagname="gmd:MD_ClassificationCode">Classification code</name>
220
+ <name tagname="gmd:MD_Constraints">Constraints</name>
221
+ <name tagname="gmd:MD_CoverageContentTypeCode">Content type code</name>
222
+ <name tagname="gmd:MD_CoverageDescription">Coverage description</name>
223
+ <name tagname="gmd:MD_DataIdentification">Data identification</name>
224
+ <name tagname="gmd:MD_DatatypeCode">Data type code</name>
225
+ <name tagname="gmd:MD_DigitalTransferOptions">Digital transfer options</name>
226
+ <name tagname="gmd:MD_Dimension">Dimension</name>
227
+ <name tagname="gmd:MD_DimensionNameTypeCode">Dimension name type code</name>
228
+ <name tagname="gmd:MD_Distribution">Distribution</name>
229
+ <name tagname="gmd:MD_DistributionUnits">DistributionUnits</name>
230
+ <name tagname="gmd:MD_Distributor">Distributor</name>
231
+ <name tagname="gmd:MD_ExtendedElementInformation">Extended elemen information</name>
232
+ <name tagname="gmd:MD_FeatureCatalogueDescription">Feature catalogue description</name>
233
+ <name tagname="gmd:MD_Format">Format</name>
234
+ <name tagname="gmd:MD_GeometricObjects">Geometric objects</name>
235
+ <name tagname="gmd:MD_GeometricObjectTypeCode">Geometric object type code</name>
236
+ <name tagname="gmd:MD_Georectified">Georectified</name>
237
+ <name tagname="gmd:MD_Georeferenceable">Georeferenceable</name>
238
+ <name tagname="gmd:MD_GridSpatialRepresentation">Grid spatial representation</name>
239
+ <name tagname="gmd:MD_Identifier">Identifier</name>
240
+ <name tagname="gmd:MD_ImageDescription">Image description</name>
241
+ <name tagname="gmd:MD_ImagingConditionCode">Imaging condition code</name>
242
+ <name tagname="gmd:MD_Keywords">Keywords</name>
243
+ <name tagname="gmd:MD_KeywordTypeCode">Keyword type code</name>
244
+ <name tagname="gmd:MD_LegalConstraints">Legal constraints</name>
245
+ <name tagname="gmd:MD_MaintenanceFrequencyCode">Maintenance frequency code</name>
246
+ <name tagname="gmd:MD_MaintenanceInformation">Maintenance information</name>
247
+ <name tagname="gmd:MD_Medium">Medium</name>
248
+ <name tagname="gmd:MD_MediumFormatCode">Medium format</name>
249
+ <name tagname="gmd:MD_MediumNameCode">Medium name code</name>
250
+ <name tagname="gmd:MD_Metadata">Metadata</name>
251
+ <name tagname="gmd:MD_MetadataExtensionInformation">Metadata extension info</name>
252
+ <name tagname="gmd:MD_ObligationCode">Obligation code</name>
253
+ <name tagname="gmd:MD_PixelOrientationCode">Pixel orientation code</name>
254
+ <name tagname="gmd:MD_PortrayalCatalogueReference">Portrayal catalogue reference</name>
255
+ <name tagname="gmd:MD_ProgressCode">Progress code</name>
256
+ <name tagname="gmd:MD_RangeDimension">Range dimension</name>
257
+ <name tagname="gmd:MD_ReferenceSystem">Reference system</name>
258
+ <name tagname="gmd:MD_RepresentativeFraction">Representative fraction</name>
259
+ <name tagname="gmd:MD_Resolution">Resolution</name>
260
+ <name tagname="gmd:MD_RestrictionCode">Restriction code</name>
261
+ <name tagname="gmd:MD_ScopeCode">Scope code</name>
262
+ <name tagname="gmd:MD_ScopeDescription">Scope description</name>
263
+ <name tagname="gmd:MD_SecurityConstraints">Security constraints</name>
264
+ <name tagname="gmd:MD_ServiceIdentification">MD Service identification</name>
265
+ <name tagname="gmd:MD_ServiceIdentification">Service identification</name>
266
+ <name tagname="gmd:MD_SpatialRepresentationTypeCode">Spatial representation type code</name>
267
+ <name tagname="gmd:MD_StandardOrderProcess">Standard order process</name>
268
+ <name tagname="gmd:MD_TopicCategoryCode">Topic category code</name>
269
+ <name tagname="gmd:MD_TopologyLevelCode">Topology level code</name>
270
+ <name tagname="gmd:MD_Usage">Usage</name>
271
+ <name tagname="gmd:MD_VectorSpatialRepresentation">Vector spatial representation</name>
272
+ <name tagname="gmd:measureDescription">Measure description</name>
273
+ <name tagname="gmd:measureIdentification">Measure identification</name>
274
+ <name tagname="gmd:mediumFormat">Medium format</name>
275
+ <name tagname="gmd:mediumNote">Medium note</name>
276
+ <name tagname="gmd:metadataConstraints">Metadata constraints</name>
277
+ <name tagname="gmd:metadataExtensionInfo">Metadata extension info</name>
278
+ <name tagname="gmd:metadataMaintenance">Metadata maintenance</name>
279
+ <name tagname="gmd:metadataStandardName">Metadata standard name</name>
280
+ <name tagname="gmd:metadataStandardVersion">Metadata standard version</name>
281
+ <name tagname="gmd:minimumValue">Minimum value</name>
282
+ <name tagname="gmd:minValue">Minimum value</name>
283
+ <name tagname="gmd:name">Name</name>
284
+ <name tagname="gmd:nameOfMeasure">Name of measure</name>
285
+ <name tagname="gmd:northBoundLatitude">North bound latitude</name>
286
+ <name tagname="gmd:numberOfDimensions">Number of dimensions</name>
287
+ <name tagname="gmd:obligation">Obligation</name>
288
+ <name tagname="gmd:offLine">Offline</name>
289
+ <name tagname="gmd:offset">Offset</name>
290
+ <name tagname="gmd:onLine">Online</name>
291
+ <name tagname="gmd:onlineResource">Online Resource</name>
292
+ <name tagname="gmd:orderingInstructions">Ordering instructions</name>
293
+ <name tagname="gmd:organisationName">Organisation name</name>
294
+ <name tagname="gmd:orientationParameterAvailability">Orientation parameter availability</name>
295
+ <name tagname="gmd:orientationParameterDescription">Orientation parameter description</name>
296
+ <name tagname="gmd:other">Other</name>
297
+ <name tagname="gmd:otherCitationDetails">Other citation details</name>
298
+ <name tagname="gmd:otherConstraints">Other constraints</name>
299
+ <name tagname="gmd:page">Page</name>
300
+ <name tagname="gmd:parameterCitation">Parameter citation</name>
301
+ <name tagname="gmd:parentEntity">Parent entity</name>
302
+ <name tagname="gmd:parentIdentifier">Parent identifier</name>
303
+ <name tagname="gmd:partOf">part of</name>
304
+ <name tagname="gmd:pass">Pass</name>
305
+ <name tagname="gmd:peakResponse">Peak response</name>
306
+ <name tagname="gmd:phone">Phone</name>
307
+ <name tagname="gmd:plannedAvailableDateTime">Planned available date and time</name>
308
+ <name tagname="gmd:pointInPixel">Point in pixel</name>
309
+ <name tagname="gmd:pointOfContact">Point of contact</name>
310
+ <name tagname="gmd:polygon">Polygon</name>
311
+ <name tagname="gmd:portrayalCatalogueCitation">Portrayal catalogue citation</name>
312
+ <name tagname="gmd:portrayalCatalogueInfo">Portrayal catalogue info</name>
313
+ <name tagname="gmd:positionName">Position name</name>
314
+ <name tagname="gmd:postalCode">Postal code</name>
315
+ <name tagname="gmd:presentationForm">Presentation form</name>
316
+ <name tagname="gmd:processingLevelCode">Processing level code</name>
317
+ <name tagname="gmd:processor">Processor</name>
318
+ <name tagname="gmd:processStep">Process step</name>
319
+ <name tagname="gmd:propertyType">propertyType</name>
320
+ <name tagname="gmd:protocol">Protocol</name>
321
+ <name tagname="gmd:PT_FreeText">Free text</name>
322
+ <name tagname="gmd:PT_Locale">Locale</name>
323
+ <name tagname="gmd:PT_LocaleContainer">Locale Container</name>
324
+ <name tagname="gmd:purpose">Purpose</name>
325
+ <name tagname="gmd:radiometricCalibrationDataAvailability">Radiometric calibration data availability</name>
326
+ <name tagname="gmd:rationale">Rationale</name>
327
+ <name tagname="gmd:referenceSystemIdentifier">Reference system identifier</name>
328
+ <name tagname="gmd:referenceSystemInfo">Reference system info</name>
329
+ <name tagname="gmd:report">Report</name>
330
+ <name tagname="gmd:resolution">Resolution</name>
331
+ <name tagname="gmd:resourceConstraints">Resource constraints</name>
332
+ <name tagname="gmd:resourceFormat">Resource format</name>
333
+ <name tagname="gmd:resourceMaintenance">Resource maintenance</name>
334
+ <name tagname="gmd:resourceSpecificUsage">Resource specific usage</name>
335
+ <name tagname="gmd:responsibleParty">Responsible Party</name>
336
+ <name tagname="gmd:result">Result</name>
337
+ <name tagname="gmd:role">Role</name>
338
+ <name tagname="gmd:RS_Identifier">RS Identifier</name>
339
+ <name tagname="gmd:rule">Rule</name>
340
+ <name tagname="gmd:scaleDenominator">Scale</name>
341
+ <name tagname="gmd:scaleFactor">Scale factor</name>
342
+ <name tagname="gmd:schemaAscii">Schema ascii</name>
343
+ <name tagname="gmd:schemaLanguage">Schema language</name>
344
+ <name tagname="gmd:scope">Scope</name>
345
+ <name tagname="gmd:sequenceIdentifier">Sequence identifier</name>
346
+ <name tagname="gmd:series">Series</name>
347
+ <name tagname="gmd:seriesMetadata">seriesMetadata</name>
348
+ <name tagname="gmd:shortName">Short name</name>
349
+ <name tagname="gmd:softwareDevelopmentFile">Software development file</name>
350
+ <name tagname="gmd:softwareDevelopmentFileFormat">Software development file format</name>
351
+ <name tagname="gmd:source">Source</name>
352
+ <name tagname="gmd:sourceCitation">Source citation</name>
353
+ <name tagname="gmd:sourceExtent">Source extent</name>
354
+ <name tagname="gmd:sourceReferenceSystem">Source reference system</name>
355
+ <name tagname="gmd:sourceStep">Source step</name>
356
+ <name tagname="gmd:southBoundLatitude">South bound latitude</name>
357
+ <name tagname="gmd:spatialExtent">Spatial extent</name>
358
+ <name tagname="gmd:spatialRepresentationInfo">Spatial representation info</name>
359
+ <name tagname="gmd:spatialRepresentationType">Spatial representation type</name>
360
+ <name tagname="gmd:spatialResolution">Spatial resolution</name>
361
+ <name tagname="gmd:specification">Specification</name>
362
+ <name tagname="gmd:specification">Specification</name>
363
+ <name tagname="gmd:specificUsage">Specific usage</name>
364
+ <name tagname="gmd:statement">Statement</name>
365
+ <name tagname="gmd:status">Status</name>
366
+ <name tagname="gmd:subset">Subset</name>
367
+ <name tagname="gmd:superset">Superset</name>
368
+ <name tagname="gmd:supplementalInformation">Supplemental Information</name>
369
+ <name tagname="gmd:temporalElement">Temporal element</name>
370
+ <name tagname="gmd:textGroup">Text Group</name>
371
+ <name tagname="gmd:thesaurusName">Thesaurus name</name>
372
+ <name tagname="gmd:title">Title</name>
373
+ <name tagname="gmd:toneGradation">Tone gradation</name>
374
+ <name tagname="gmd:topicCategory">Topic category</name>
375
+ <name tagname="gmd:topologyLevel">Topology level</name>
376
+ <name tagname="gmd:transferOptions">Transfer options</name>
377
+ <name tagname="gmd:transferSize">Transfer size</name>
378
+ <name tagname="gmd:transformationDimensionDescription">Transformation dimension description</name>
379
+ <name tagname="gmd:transformationDimensionMapping">Transformation dimension mapping</name>
380
+ <name tagname="gmd:transformationParameterAvailability">Transformation parameter availability</name>
381
+ <name tagname="gmd:triangulationIndicator">Triangulation indicator</name>
382
+ <name tagname="gmd:turnaround">Turnaround</name>
383
+ <name tagname="gmd:type">Type</name>
384
+ <name tagname="gmd:units">Value unit</name>
385
+ <name tagname="gmd:unitsOfDistribution">Units of distribution</name>
386
+ <name tagname="gmd:updateScope">Update scope</name>
387
+ <name tagname="gmd:updateScopeDescription">Update scope description</name>
388
+ <name tagname="gmd:URL">URL</name>
389
+ <name tagname="gmd:usageDateTime">Usage date and time</name>
390
+ <name tagname="gmd:useConstraints">Use constraints</name>
391
+ <name tagname="gmd:useLimitation">Use limitation</name>
392
+ <name tagname="gmd:userContactInfo">User contact info</name>
393
+ <name tagname="gmd:userDefinedMaintenanceFrequency">User defined maintenance frequency</name>
394
+ <name tagname="gmd:userDeterminedLimitations">User determined limitations</name>
395
+ <name tagname="gmd:userNote">User note</name>
396
+ <name tagname="gmd:value">Value</name>
397
+ <name tagname="gmd:valueType">Value type</name>
398
+ <name tagname="gmd:valueUnit">Value unit</name>
399
+ <name tagname="gmd:version">Version</name>
400
+ <name tagname="gmd:verticalCRS">Vertical CRS</name>
401
+ <name tagname="gmd:verticalElement">Vertical element</name>
402
+ <name tagname="gmd:voice">Voice</name>
403
+ <name tagname="gmd:volumes">Volumes</name>
404
+ <name tagname="gmd:westBoundLongitude">West bound longitude</name>
405
+ <!-- === GMI namespace -->
406
+ <name tagname="gmi:AbstractMI_GeolocationInformation">Geolocation Information</name>
407
+ <name tagname="gmi:accuracyReport">Accuracy report</name>
408
+ <name tagname="gmi:acquisitionInformation">Acquisition</name>
409
+ <name tagname="gmi:acquisitionPlan">Acquisition plan</name>
410
+ <name tagname="gmi:acquisitionRequirement">Acquisition requirement</name>
411
+ <name tagname="gmi:algorithm">Algorithm</name>
412
+ <name tagname="gmi:averageAirTemperature">Average air temperature</name>
413
+ <name tagname="gmi:bandBoundaryDefinition">Band boundary definition</name>
414
+ <name tagname="gmi:checkPoint">Check point</name>
415
+ <name tagname="gmi:childOperation">Child operation</name>
416
+ <name tagname="gmi:collectionIdentification">Collection Identification</name>
417
+ <name tagname="gmi:collectionName">Collection name</name>
418
+ <name tagname="gmi:context">Context</name>
419
+ <name tagname="context">Context</name>
420
+ <name tagname="gmi:coordinateReferenceSystem">Coordinate Reference System</name>
421
+ <name tagname="gmi:description">Description</name>
422
+ <name tagname="gmi:definition">Definition</name>
423
+ <name tagname="gmi:detectedPolarisation">Detected polarisation</name>
424
+ <name tagname="gmi:documentation">Documentation</name>
425
+ <name tagname="gmi:environmentalConditions">Environmental conditions</name>
426
+ <name tagname="gmi:expectedObjective">Expected Objective</name>
427
+ <name tagname="gmi:expiryDate">Expiry Date</name>
428
+ <name tagname="gmi:extent">Extent</name>
429
+ <name tagname="gmi:fileType">File Type</name>
430
+ <name tagname="gmi:gcp">GCP</name>
431
+ <name tagname="gmi:geographicCoordinates">Geographic Coordinates</name>
432
+ <name tagname="gmi:geolocationIdentification">Geolocation Identification</name>
433
+ <name tagname="gmi:geolocationInformation">Geolocation Information</name>
434
+ <name tagname="gmi:groundResolution">Ground Resolution</name>
435
+ <name tagname="gmi:identifier">Identifier</name>
436
+ <name tagname="identifier">Identifier</name>
437
+ <name tagname="gmi:instrument">Instrument</name>
438
+ <name tagname="gmi:latestAcceptableDate">Latest Acceptable Date</name>
439
+ <name tagname="gmi:LE_Algorithm">Algorithm</name>
440
+ <name tagname="gmi:LE_NominalResolution">Nominal Resolution</name>
441
+ <name tagname="gmi:LE_Processing">Processing</name>
442
+ <name tagname="gmi:LE_ProcessStep">Process Step</name>
443
+ <name tagname="gmi:LE_ProcessStepReport">Process Step Report</name>
444
+ <name tagname="gmi:LE_Source">Source</name>
445
+ <name tagname="gmi:maxAltitude">Max Altitude</name>
446
+ <name tagname="gmi:maxRelativeHumidity">Max Relative Humidity</name>
447
+ <name tagname="gmi:meteorologicalConditions">Meteorological Conditions</name>
448
+ <name tagname="gmi:MI_AcquisitionInformation">Acquisition Information</name>
449
+ <name tagname="gmi:MI_Band">Band</name>
450
+ <name tagname="gmi:MI_BandDefinition">Band Definition</name>
451
+ <name tagname="gmi:MI_ContextCode">Context Code</name>
452
+ <name tagname="MI_ContextCode">Context Code</name>
453
+ <name tagname="gmi:MI_CoverageDescription">Coverage Description</name>
454
+ <name tagname="gmi:MI_EnvironmentalRecord">Environmental Record</name>
455
+ <name tagname="gmi:MI_Event">Event</name>
456
+ <name tagname="MI_Event">Event</name>
457
+ <name tagname="gmi:MI_GCP">GCP</name>
458
+ <name tagname="gmi:MI_GCPCollection">GCP Collection</name>
459
+ <name tagname="gmi:MI_GeometryTypeCode">Geometry Type Code</name>
460
+ <name tagname="gmi:MI_Georectified">Georectified</name>
461
+ <name tagname="gmi:MI_Georeferenceable">Georeferenceable</name>
462
+ <name tagname="gmi:MI_ImageDescription">Image Description</name>
463
+ <name tagname="gmi:MI_Instrument">Instrument</name>
464
+ <name tagname="gmi:MI_Objective">Objective</name>
465
+ <name tagname="gmi:MI_Metadata">Metadata</name>
466
+ <name tagname="gmi:MI_ObjectiveTypeCode">Objective Type Code</name>
467
+ <name tagname="gmi:MI_Operation">Operation</name>
468
+ <name tagname="MI_Operation">Operation</name>
469
+ <name tagname="gmi:MI_OperationTypeCode">Operation Type Code</name>
470
+ <name tagname="gmi:MI_Plan">Plan</name>
471
+ <name tagname="gmi:MI_Platform">Platform</name>
472
+ <name tagname="gmi:MI_PlatformPass">Platform Pass</name>
473
+ <name tagname="gmi:MI_PolarisationOrientationCode">Polarisation Orientation Code</name>
474
+ <name tagname="gmi:MI_PriorityCode">Priority Code</name>
475
+ <name tagname="gmi:MI_RangeElementDescription">Range Element Description</name>
476
+ <name tagname="gmi:MI_RequestedDate">Requested Date</name>
477
+ <name tagname="gmi:MI_Requirement">Requirement</name>
478
+ <name tagname="gmi:MI_SensorTypeCode">Sensor Type Code</name>
479
+ <name tagname="gmi:MI_SequenceCode">Sequence Code</name>
480
+ <name tagname="MI_SequenceCode">Sequence Code</name>
481
+ <name tagname="gmi:MI_TransferFunctionTypeCode">Transfer Function Type Code</name>
482
+ <name tagname="gmi:MI_TriggerCode">Trigger Code</name>
483
+ <name tagname="MI_TriggerCode">Trigger Code</name>
484
+ <name tagname="gmi:mountedOn">Mounted On</name>
485
+ <name tagname="gmi:name">Name</name>
486
+ <name tagname="gmi:nominalSpatialResolution">Nominal Spatial Resolution</name>
487
+ <name tagname="gmi:objective">Objective</name>
488
+ <name tagname="objective">Objective</name>
489
+ <name tagname="gmi:objectiveOccurance">ObjectiveOccurance</name>
490
+ <name tagname="gmi:operation">Operation Information</name>
491
+ <name tagname="gmi:operation">Operation Information</name>
492
+ <name tagname="gmi:output">Output</name>
493
+ <name tagname="gmi:parentOperation">Parent Operation</name>
494
+ <name tagname="parentOperation">Parent Operation</name>
495
+ <name tagname="gmi:pass">Pass</name>
496
+ <name tagname="gmi:plan">Plan</name>
497
+ <name tagname="gmi:platform">Platform</name>
498
+ <name tagname="gmi:platformParameters">Platform Parameters</name>
499
+ <name tagname="gmi:priority">Priority</name>
500
+ <name tagname="gmi:procedureDescription">Procedure Description</name>
501
+ <name tagname="gmi:processedLevel">Processed Level</name>
502
+ <name tagname="gmi:processingInformation">Processing Information</name>
503
+ <name tagname="gmi:QE_CoverageResult">Coverage Result</name>
504
+ <name tagname="gmi:QE_Usability">Usability</name>
505
+ <name tagname="gmi:qualityInfo">Quality Info</name>
506
+ <name tagname="gmi:rangeElement">Range Element</name>
507
+ <name tagname="gmi:rangeElementDescription">Range Element Description</name>
508
+ <name tagname="gmi:recipient">Recipient</name>
509
+ <name tagname="gmi:relatedEvent">Related Event</name>
510
+ <name tagname="gmi:relatedPass">Related Pass</name>
511
+ <name tagname="gmi:relatedSensor">Related Sensor</name>
512
+ <name tagname="gmi:report">Report</name>
513
+ <name tagname="gmi:requestedDate">Requested Date</name>
514
+ <name tagname="gmi:requestedDateOfCollection">Requested Date of Collection</name>
515
+ <name tagname="gmi:requestor">Requestor</name>
516
+ <name tagname="gmi:resolution">Resolution</name>
517
+ <name tagname="gmi:resultContentDescription">Result Content Description</name>
518
+ <name tagname="gmi:resultFile">Result File</name>
519
+ <name tagname="gmi:resultFormat">Result Format</name>
520
+ <name tagname="gmi:resultSpatialRepresentation">Result Spatial Representation</name>
521
+ <name tagname="gmi:runTimeParameters">Run Time Parameters</name>
522
+ <name tagname="gmi:satisfiedRequirement">Satisfied Requirement</name>
523
+ <name tagname="gmi:satisifiedPlan">Satisified Plan</name>
524
+ <name tagname="gmi:scanningResolution">Scanning Resolution</name>
525
+ <name tagname="gmi:sensingInstrument">Sensing Instrument</name>
526
+ <name tagname="gmi:sequence">Sequence</name>
527
+ <name tagname="sequence">Sequence</name>
528
+ <name tagname="gmi:significantEvent">Significant Event</name>
529
+ <name tagname="significantEvent">Significant Event</name>
530
+ <name tagname="gmi:softwareReference">Software Reference</name>
531
+ <name tagname="gmi:sponsor">Sponsor</name>
532
+ <name tagname="gmi:status">Status</name>
533
+ <name tagname="status">Status</name>
534
+ <name tagname="gmi:time">Time</name>
535
+ <name tagname="time">Time</name>
536
+ <name tagname="gmi:transferFunctionType">Transfer function type</name>
537
+ <name tagname="gmi:transmittedPolarisation">Transmitted polarisation</name>
538
+ <name tagname="gmi:trigger">Trigger</name>
539
+ <name tagname="trigger">Trigger</name>
540
+ <name tagname="gmi:type">Type</name>
541
+ <!-- === GML namespace -->
542
+ <name tagname="gml:a">a</name>
543
+ <name tagname="gml:b">b</name>
544
+ <name tagname="gml:begin">Begin</name>
545
+ <name tagname="gml:beginPosition">Begin date</name>
546
+ <name tagname="gml:c">c</name>
547
+ <name tagname="gml:ConventionalUnit">Conventional unit</name>
548
+ <name tagname="gml:conversionToPreferredUnit">Conversion to preferred unit</name>
549
+ <name tagname="gml:coordinates">Coordinates</name>
550
+ <name tagname="gml:description">Description</name>
551
+ <name tagname="gml:end">End</name>
552
+ <name tagname="gml:endPosition">End date</name>
553
+ <name tagname="gml:exterior">Outer boundary</name>
554
+ <name tagname="gml:formula">Formula</name>
555
+ <name tagname="gml:id">Identifier</name>
556
+ <name tagname="gml:identifier">Identifier</name>
557
+ <name tagname="gml:interior">Inner boundary</name>
558
+ <name tagname="gml:LinearRing">Linear ring</name>
559
+ <name tagname="gml:LineString">Line</name>
560
+ <name tagname="gml:Point">Point</name>
561
+ <name tagname="gml:Polygon">Polygon</name>
562
+ <name tagname="gml:relatedTime">Related time</name>
563
+ <name tagname="gml:TimeInstant">Time instant</name>
564
+ <name tagname="gml:TimePeriod">Time period</name>
565
+ <name tagname="gml:timePosition">Time position</name>
566
+ <name tagname="gml:BaseUnit">Base unit</name>
567
+ <name tagname="gml:unitsSystem">Units system</name>
568
+ <!-- All XML attributes declared in the GML schema are defined without namespace, the only exception is the gml:id XML attribute. -->
569
+ <name tagname="srsName">Spatial Reference System Name</name>
570
+ <!-- === SRV namespace for 19119 service metadata -->
571
+ <name tagname="srv:SV_ServiceIdentification">Service Identification (19119)</name>
572
+ <name tagname="srv:serviceType">Service Type</name>
573
+ <name tagname="srv:serviceTypeVersion">Service Version</name>
574
+ <name tagname="srv:accessProperties">Access Properties</name>
575
+ <name tagname="srv:restrictions">Restrictions</name>
576
+ <name tagname="srv:containsOperations">Contains Operations</name>
577
+ <name tagname="srv:operatesOn">Operates On</name>
578
+ <name tagname="srv:operationName">Operation Name</name>
579
+ <name tagname="srv:SV_OperationMetadata">Operation</name>
580
+ <name tagname="srv:DCP">Distributed Computing Platforms</name>
581
+ <name tagname="srv:DCPList">Distributed Computing Platforms List</name>
582
+ <name tagname="srv:operationDescription">Operation Description</name>
583
+ <name tagname="srv:invocationName">Invocation Name</name>
584
+ <name tagname="srv:parameters">Parameters</name>
585
+ <name tagname="srv:connectPoint">Connect Point</name>
586
+ <name tagname="srv:dependsOn">Depends On</name>
587
+ <name tagname="srv:providerName">Provider Name</name>
588
+ <name tagname="srv:serviceContact">Service Contact</name>
589
+ <name tagname="srv:name">Name</name>
590
+ <name tagname="srv:description">Description</name>
591
+ <name tagname="srv:optionality">Optionality</name>
592
+ <name tagname="srv:repeatability">Repeatability</name>
593
+ <name tagname="srv:coupledResource">Coupled Resource</name>
594
+ <name tagname="srv:SV_CoupledResource">Coupled Resource</name>
595
+ <name tagname="srv:identifier">Identifier</name>
596
+ <name tagname="srv:couplingType">Coupling Type</name>
597
+ <name tagname="srv:SV_CouplingType">Coupling Type</name>
598
+ <name tagname="srv:extent">Extent</name>
599
+ <name tagname="srv:keywords">Keywords</name>
600
+ <!-- === GCO namespace -->
601
+ <!--
602
+ <name tagname="gco:CharacterString">Character String</name>
603
+ <name tagname="gco:Date">Date</name>
604
+ <name tagname="gco:DateTime">Date and time</name>
605
+ <name tagname="gco:Measure">Measure</name>
606
+ -->
607
+ <!-- === GTS namespace -->
608
+ <name tagname="gts:TM_PeriodDuration">Period duration</name>
609
+ <!-- === GMX namespace -->
610
+ <name tagname="gmx:Anchor">Anchor</name>
611
+ <name tagname="gmx:name">Name</name>
612
+ <name tagname="gmx:scope">Scope</name>
613
+ <name tagname="gmx:versionNumber">Version number</name>
614
+ <name tagname="gmx:versionDate">Version date</name>
615
+ <name tagname="gmx:language">Language</name>
616
+ <name tagname="gmx:characterSet">Character set</name>
617
+ <name tagname="gmx:FileName">File Name</name>
618
+ <name tagname="gmx:MX_ScopeCode">MX_ScopeCode</name>
619
+ <name tagname="gmx:MimeFileType">Mime File Type</name>
620
+ <!-- === Biological Extensions -->
621
+ <name tagname="gmd:taxonomy">Taxonomy</name>
622
+ <name tagname="gmd:MD_TaxonSys">Taxonomic System</name>
623
+ <name tagname="gmd:classSys">Classification System Authority</name>
624
+ <name tagname="gmd:classmod">Classification System Modifications</name>
625
+ <name tagname="gmd:taxongen">General Taxonomic Scope</name>
626
+ <name tagname="gmd:idref">Identification Reference</name>
627
+ <name tagname="gmd:obs">Observer</name>
628
+ <name tagname="gmd:taxonpro">Taxonomic Procedures</name>
629
+ <name tagname="gmd:taxoncom">Taxonomic Completeness</name>
630
+ <name tagname="gmd:voucher">Voucher Information</name>
631
+ <name tagname="gmd:MD_Vouchers">Vouchers</name>
632
+ <name tagname="gmd:specimen">Specimen</name>
633
+ <name tagname="gmd:reposit">Repository</name>
634
+ <name tagname="gmd:taxonCl">Taxonomic Classification Information</name>
635
+ <name tagname="gmd:MD_TaxonCl">Taxonomic Classification</name>
636
+ <name tagname="gmd:common">Common Name</name>
637
+ <name tagname="gmd:taxonrn">Taxonomic Rank Name</name>
638
+ <name tagname="gmd:taxonrv">Taxonomic Rank Value</name>
639
+ <name tagname="gmd:hiclass">Hierarchical Classification</name>
640
+ <!--===GFC namespace-->
641
+ <name tagname="gfc:FC_FeatureCatalogue">Feature Catalogue</name>
642
+ <name tagname="gfc:featureType">Feature Type Information</name>
643
+ <name tagname="gfc:FC_FeatureType">Feature type</name>
644
+ <name tagname="gfc:typeName">Type name</name>
645
+ <name tagname="gfc:definition">Definition</name>
646
+ <name tagname="gfc:isAbstract">Is abstract</name>
647
+ <name tagname="gfc:featureCatalogue">Feature Catalogue Information</name>
648
+ <name tagname="gfc:carrierOfCharacteristics">Carrier of characteristics</name>
649
+ <name tagname="gfc:FC_FeatureAttribute">Feature attribute</name>
650
+ <name tagname="gfc:memberName">Member name</name>
651
+ <name tagname="gfc:cardinality">Cardinality</name>
652
+ <name tagname="gfc:definitionReference">Definition Reference Information</name>
653
+ <name tagname="gfc:FC_DefinitionReference">Definition reference</name>
654
+ <name tagname="gfc:definitionSource">Definition Source Information</name>
655
+ <name tagname="gfc:FC_DefinitionSource">Definition source</name>
656
+ <name tagname="gfc:source">Source</name>
657
+ <name tagname="gfc:valueMeasurementUnit">Value measurement unit</name>
658
+ <name tagname="gfc:constrainedBy">Constrained by</name>
659
+ <name tagname="gfc:FC_Constraint">Constraint</name>
660
+ <name tagname="gfc:description">Description</name>
661
+ <name tagname="gfc:producer">Producer</name>
662
+ <name tagname="gfc:listedValue">Listed value</name>
663
+ <name tagname="gfc:FC_ListedValue">Listed Value</name>
664
+ <name tagname="gfc:label">Label</name>
665
+ </names>