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,51 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../config/boot')
2
+
3
+ require 'rubygems'
4
+ require 'rspec'
5
+ require 'awesome_print'
6
+ require 'equivalent-xml'
7
+ require 'geohydra'
8
+
9
+ describe GeoHydra::Solr do
10
+
11
+ POINT = /^POINT\([-\s\d\.]+\)/i # no commas
12
+ POLYGON = /^POLYGON\(\([-\s\d\.,]+\)\)/i
13
+
14
+ before(:each) do
15
+ @solr = GeoHydra::Solr.new 'http://localhost:8983/solr'
16
+ @xml = {}
17
+ @docs = {}
18
+ Dir.glob('spec/fixtures/*_geoMetadata.xml') do |fn|
19
+ @xml[fn] = Nokogiri::XML(File.read(fn)).to_xml
20
+ @docs[fn] = Dor::GeoMetadataDS.from_xml(@xml[fn])
21
+ end
22
+ end
23
+
24
+ describe "#to_solr" do
25
+ it "#convert" do
26
+ @docs.each do |k, geoMetadata|
27
+ # ap({:k => k, :geoMetadata => geoMetadata, :to_solr => geoMetadata.to_solr_spatial})
28
+ doc = geoMetadata.to_solr_spatial
29
+ doc["format_s"].should == ["Shapefile"]
30
+ doc["format_s"].should == ["Shapefile"]
31
+ doc["dc_language_s"].should == ["eng"]
32
+ %w{geo_pt geo_sw_pt geo_ne_pt}.each do |pt|
33
+ doc[pt].each do |s|
34
+ ap({:match => POINT.match(s), :s => s, :re => POINT})
35
+ POINT.match(s).nil?.should == false
36
+ end
37
+ end
38
+ POLYGON.match(doc["geo_bbox"].first).nil?.should == false
39
+ end
40
+ end
41
+ end
42
+
43
+ describe "#solr.add" do
44
+ it "upload" do
45
+ @docs.each do |k, geoMetadata|
46
+ @solr.add geoMetadata
47
+ end
48
+ @solr.upload
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,21 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path(File.dirname(__FILE__) + '/../config/boot')
3
+
4
+ Dor::DigitalStacksService # force Net::SSH load
5
+
6
+ def doit h, u, p = '', a = 'gssapi-with-mic'
7
+ puts "Connecting to #{u}@#{h} via #{a}"
8
+ Net::SSH.start(h, u, :auth_methods => [a]) do |ssh|
9
+ puts ssh.exec!("/bin/ls -aC #{p}")
10
+ end
11
+ end
12
+
13
+ doit Dor::Config.stacks.host,
14
+ Dor::Config.stacks.user,
15
+ Dor::Config.stacks.storage_root
16
+ doit Dor::Config.stacks.document_cache_host,
17
+ Dor::Config.stacks.document_cache_user,
18
+ Dor::Config.stacks.document_cache_storage_root
19
+ doit Dor::Config.content.content_server,
20
+ Dor::Config.content.content_user,
21
+ Dor::Config.content.content_base_dir
@@ -0,0 +1,100 @@
1
+ # encoding: UTF-8
2
+
3
+ require File.expand_path(File.dirname(__FILE__) + '/../../config/boot')
4
+
5
+ require 'rubygems'
6
+ require 'rspec'
7
+ require 'awesome_print'
8
+ require 'equivalent-xml'
9
+ require 'geohydra'
10
+
11
+ g = GeoHydra::Gazetteer.new
12
+ # ap({:g => g})
13
+
14
+ K2ID = {
15
+ 'United States' => 6252001,
16
+ 'Union Territory of Chandīgarh' => 1274744,
17
+ 'State of Mahārāshtra' => 1264418
18
+ }
19
+
20
+ K2LC = {
21
+ 'Earth' => 'Earth (Planet)',
22
+ 'United States' => 'United States',
23
+ 'Union Territory of Chandīgarh' => nil,
24
+ 'State of Mahārāshtra' => 'Maharashtra (India)'
25
+ }
26
+
27
+ K2LCURI = {
28
+ 'Earth' => 'http://id.loc.gov/authorities/subjects/sh85040427'
29
+ }
30
+
31
+ describe GeoHydra::Gazetteer do
32
+
33
+ describe '#find_id_by_keyword' do
34
+ it "nil case" do
35
+ g.find_id_by_keyword(nil).should == nil
36
+ g.find_id_by_keyword('adsfadsfasdf').should == nil
37
+ end
38
+ K2ID.each do |k,id|
39
+ it k do
40
+ r = g.find_id_by_keyword(k)
41
+ r.should == id
42
+ end
43
+ end
44
+ end
45
+
46
+ describe '#find_lc_by_keyword' do
47
+ it "nil case" do
48
+ g.find_lc_by_keyword(nil).should == nil
49
+ g.find_lc_by_keyword('asdfasdfasdf').should == nil
50
+ end
51
+ K2LC.each do |k,lcsh|
52
+ it k do
53
+ r = g.find_lc_by_keyword(k)
54
+ r.should == lcsh
55
+ end
56
+ end
57
+ end
58
+
59
+ describe '#find_lcuri_by_keyword' do
60
+ it "nil case" do
61
+ g.find_lcuri_by_keyword(nil).should == nil
62
+ g.find_lcuri_by_keyword('asdfasdfasdf').should == nil
63
+ end
64
+ K2LCURI.each do |k,lcuri|
65
+ it k do
66
+ r = g.find_lcuri_by_keyword(k)
67
+ r.should == lcuri
68
+ end
69
+ end
70
+ end
71
+
72
+
73
+ describe '#find_uri_by_keyword' do
74
+ it "nil case" do
75
+ g.find_uri_by_keyword(nil).should == nil
76
+ g.find_uri_by_keyword('asdfasdfasdf').should == nil
77
+ end
78
+ K2ID.each do |k,id|
79
+ it k do
80
+ r = g.find_uri_by_keyword(k)
81
+ r.should == "http://sws.geonames.org/#{id}/"
82
+ end
83
+ end
84
+ end
85
+
86
+ describe '#find_keyword_by_id' do
87
+ it "nil case" do
88
+ g.find_keyword_by_id(nil).should == nil
89
+ g.find_keyword_by_id(-1).should == nil
90
+ end
91
+ K2ID.each do |k,id|
92
+ it id do
93
+ r = g.find_keyword_by_id(id)
94
+ r.should == k
95
+ end
96
+ end
97
+ end
98
+
99
+
100
+ end
@@ -0,0 +1,40 @@
1
+ # encoding: UTF-8
2
+
3
+ require File.expand_path(File.dirname(__FILE__) + '/../../config/boot')
4
+
5
+ require 'rubygems'
6
+ require 'rspec'
7
+ require 'awesome_print'
8
+ require 'equivalent-xml'
9
+ require 'geohydra'
10
+
11
+ describe GeoHydra::Transform do
12
+
13
+ describe '#to_geoMetadataDS' do
14
+ Dir.glob('spec/fixtures/*/temp/*iso19139.xml') do |fn|
15
+ druid = File.basename(File.dirname(File.dirname(fn)))
16
+
17
+ context druid do
18
+ it 'ISO19139 to geoMetadata' do
19
+ iso = Nokogiri::XML(File.open(fn))
20
+
21
+ isoFcFn = File.open(fn.gsub('iso19139', 'iso19139-fc'))
22
+ if File.exist?(isoFcFn)
23
+ isoFc = Nokogiri::XML(File.open(isoFcFn))
24
+ else
25
+ isoFc = nil
26
+ end
27
+
28
+ dsXml = GeoHydra::Transform.to_geoMetadataDS(iso, isoFc, {
29
+ 'purl' => "http://purl-test.stanford.edu/#{druid}"
30
+ })
31
+ geoFn = "spec/fixtures/#{druid}/metadata/geoMetadata.xml"
32
+ geo = Nokogiri::XML(File.open(geoFn))
33
+
34
+ dsXml.should be_equivalent_to(geo)
35
+ end
36
+ end
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,32 @@
1
+ # encoding: UTF-8
2
+
3
+ require File.expand_path(File.dirname(__FILE__) + '/../../config/boot')
4
+
5
+ require 'rubygems'
6
+ require 'rspec'
7
+ require 'awesome_print'
8
+ require 'equivalent-xml'
9
+ require 'geohydra'
10
+
11
+ describe GeoHydra::Utils do
12
+
13
+ describe '#shapefile?' do
14
+ %w{foo.shp this-is-a-very-long-long-long-name.shp}.each do |fn|
15
+ it fn do
16
+ GeoHydra::Utils.shapefile?(fn).should == true
17
+ end
18
+ end
19
+
20
+ %w{foo.shx this-is-a-very-long-long-long-name.shx foo.shp.xml}.each do |fn|
21
+ it fn do
22
+ GeoHydra::Utils.shapefile?(fn).should == false
23
+ end
24
+ end
25
+ end
26
+
27
+ describe '#find_druid_folders' do
28
+ it 'count druid folders' do
29
+ GeoHydra::Utils.find_druid_folders('spec').size.should == 112
30
+ end
31
+ end
32
+ end
metadata ADDED
@@ -0,0 +1,1491 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: geohydra
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.3'
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Darren Hardy
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-12-18 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: activerecord
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: activerecord-postgresql-adapter
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 0.0.1
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 0.0.1
46
+ - !ruby/object:Gem::Dependency
47
+ name: activesupport
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 3.2.0
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 3.2.0
62
+ - !ruby/object:Gem::Dependency
63
+ name: assembly-objectfile
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 1.6.2
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 1.6.2
78
+ - !ruby/object:Gem::Dependency
79
+ name: awesome_print
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ~>
84
+ - !ruby/object:Gem::Version
85
+ version: 1.2.0
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ version: 1.2.0
94
+ - !ruby/object:Gem::Dependency
95
+ name: confstruct
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ~>
100
+ - !ruby/object:Gem::Version
101
+ version: 0.2.5
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: 0.2.5
110
+ - !ruby/object:Gem::Dependency
111
+ name: fastimage
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: 1.5.4
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: 1.5.4
126
+ - !ruby/object:Gem::Dependency
127
+ name: json
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ version: 1.8.1
134
+ type: :runtime
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ~>
140
+ - !ruby/object:Gem::Version
141
+ version: 1.8.1
142
+ - !ruby/object:Gem::Dependency
143
+ name: nokogiri
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ~>
148
+ - !ruby/object:Gem::Version
149
+ version: 1.6.0
150
+ type: :runtime
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ~>
156
+ - !ruby/object:Gem::Version
157
+ version: 1.6.0
158
+ - !ruby/object:Gem::Dependency
159
+ name: rest-client
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ~>
164
+ - !ruby/object:Gem::Version
165
+ version: 1.6.7
166
+ type: :runtime
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ~>
172
+ - !ruby/object:Gem::Version
173
+ version: 1.6.7
174
+ - !ruby/object:Gem::Dependency
175
+ name: rgeo
176
+ requirement: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - ~>
180
+ - !ruby/object:Gem::Version
181
+ version: 0.3.20
182
+ type: :runtime
183
+ prerelease: false
184
+ version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
186
+ requirements:
187
+ - - ~>
188
+ - !ruby/object:Gem::Version
189
+ version: 0.3.20
190
+ - !ruby/object:Gem::Dependency
191
+ name: rgeo-shapefile
192
+ requirement: !ruby/object:Gem::Requirement
193
+ none: false
194
+ requirements:
195
+ - - ~>
196
+ - !ruby/object:Gem::Version
197
+ version: 0.2.3
198
+ type: :runtime
199
+ prerelease: false
200
+ version_requirements: !ruby/object:Gem::Requirement
201
+ none: false
202
+ requirements:
203
+ - - ~>
204
+ - !ruby/object:Gem::Version
205
+ version: 0.2.3
206
+ - !ruby/object:Gem::Dependency
207
+ name: rsolr
208
+ requirement: !ruby/object:Gem::Requirement
209
+ none: false
210
+ requirements:
211
+ - - ~>
212
+ - !ruby/object:Gem::Version
213
+ version: 1.0.9
214
+ type: :runtime
215
+ prerelease: false
216
+ version_requirements: !ruby/object:Gem::Requirement
217
+ none: false
218
+ requirements:
219
+ - - ~>
220
+ - !ruby/object:Gem::Version
221
+ version: 1.0.9
222
+ - !ruby/object:Gem::Dependency
223
+ name: dor-services
224
+ requirement: !ruby/object:Gem::Requirement
225
+ none: false
226
+ requirements:
227
+ - - ~>
228
+ - !ruby/object:Gem::Version
229
+ version: 4.4.5
230
+ type: :runtime
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ none: false
234
+ requirements:
235
+ - - ~>
236
+ - !ruby/object:Gem::Version
237
+ version: 4.4.5
238
+ - !ruby/object:Gem::Dependency
239
+ name: druid-tools
240
+ requirement: !ruby/object:Gem::Requirement
241
+ none: false
242
+ requirements:
243
+ - - ~>
244
+ - !ruby/object:Gem::Version
245
+ version: '0.2'
246
+ type: :runtime
247
+ prerelease: false
248
+ version_requirements: !ruby/object:Gem::Requirement
249
+ none: false
250
+ requirements:
251
+ - - ~>
252
+ - !ruby/object:Gem::Version
253
+ version: '0.2'
254
+ - !ruby/object:Gem::Dependency
255
+ name: mods
256
+ requirement: !ruby/object:Gem::Requirement
257
+ none: false
258
+ requirements:
259
+ - - ~>
260
+ - !ruby/object:Gem::Version
261
+ version: 0.0.22
262
+ type: :runtime
263
+ prerelease: false
264
+ version_requirements: !ruby/object:Gem::Requirement
265
+ none: false
266
+ requirements:
267
+ - - ~>
268
+ - !ruby/object:Gem::Version
269
+ version: 0.0.22
270
+ - !ruby/object:Gem::Dependency
271
+ name: rgeoserver
272
+ requirement: !ruby/object:Gem::Requirement
273
+ none: false
274
+ requirements:
275
+ - - ~>
276
+ - !ruby/object:Gem::Version
277
+ version: 0.7.0
278
+ type: :runtime
279
+ prerelease: false
280
+ version_requirements: !ruby/object:Gem::Requirement
281
+ none: false
282
+ requirements:
283
+ - - ~>
284
+ - !ruby/object:Gem::Version
285
+ version: 0.7.0
286
+ - !ruby/object:Gem::Dependency
287
+ name: equivalent-xml
288
+ requirement: !ruby/object:Gem::Requirement
289
+ none: false
290
+ requirements:
291
+ - - ! '>='
292
+ - !ruby/object:Gem::Version
293
+ version: '0'
294
+ type: :development
295
+ prerelease: false
296
+ version_requirements: !ruby/object:Gem::Requirement
297
+ none: false
298
+ requirements:
299
+ - - ! '>='
300
+ - !ruby/object:Gem::Version
301
+ version: '0'
302
+ - !ruby/object:Gem::Dependency
303
+ name: pry
304
+ requirement: !ruby/object:Gem::Requirement
305
+ none: false
306
+ requirements:
307
+ - - ! '>='
308
+ - !ruby/object:Gem::Version
309
+ version: '0'
310
+ type: :development
311
+ prerelease: false
312
+ version_requirements: !ruby/object:Gem::Requirement
313
+ none: false
314
+ requirements:
315
+ - - ! '>='
316
+ - !ruby/object:Gem::Version
317
+ version: '0'
318
+ - !ruby/object:Gem::Dependency
319
+ name: rake
320
+ requirement: !ruby/object:Gem::Requirement
321
+ none: false
322
+ requirements:
323
+ - - ! '>='
324
+ - !ruby/object:Gem::Version
325
+ version: '0'
326
+ type: :development
327
+ prerelease: false
328
+ version_requirements: !ruby/object:Gem::Requirement
329
+ none: false
330
+ requirements:
331
+ - - ! '>='
332
+ - !ruby/object:Gem::Version
333
+ version: '0'
334
+ - !ruby/object:Gem::Dependency
335
+ name: rdoc
336
+ requirement: !ruby/object:Gem::Requirement
337
+ none: false
338
+ requirements:
339
+ - - ! '>='
340
+ - !ruby/object:Gem::Version
341
+ version: '0'
342
+ type: :development
343
+ prerelease: false
344
+ version_requirements: !ruby/object:Gem::Requirement
345
+ none: false
346
+ requirements:
347
+ - - ! '>='
348
+ - !ruby/object:Gem::Version
349
+ version: '0'
350
+ - !ruby/object:Gem::Dependency
351
+ name: redcarpet
352
+ requirement: !ruby/object:Gem::Requirement
353
+ none: false
354
+ requirements:
355
+ - - ! '>='
356
+ - !ruby/object:Gem::Version
357
+ version: '0'
358
+ type: :development
359
+ prerelease: false
360
+ version_requirements: !ruby/object:Gem::Requirement
361
+ none: false
362
+ requirements:
363
+ - - ! '>='
364
+ - !ruby/object:Gem::Version
365
+ version: '0'
366
+ - !ruby/object:Gem::Dependency
367
+ name: rspec
368
+ requirement: !ruby/object:Gem::Requirement
369
+ none: false
370
+ requirements:
371
+ - - ! '>='
372
+ - !ruby/object:Gem::Version
373
+ version: '0'
374
+ type: :development
375
+ prerelease: false
376
+ version_requirements: !ruby/object:Gem::Requirement
377
+ none: false
378
+ requirements:
379
+ - - ! '>='
380
+ - !ruby/object:Gem::Version
381
+ version: '0'
382
+ - !ruby/object:Gem::Dependency
383
+ name: version_bumper
384
+ requirement: !ruby/object:Gem::Requirement
385
+ none: false
386
+ requirements:
387
+ - - ! '>='
388
+ - !ruby/object:Gem::Version
389
+ version: '0'
390
+ type: :development
391
+ prerelease: false
392
+ version_requirements: !ruby/object:Gem::Requirement
393
+ none: false
394
+ requirements:
395
+ - - ! '>='
396
+ - !ruby/object:Gem::Version
397
+ version: '0'
398
+ - !ruby/object:Gem::Dependency
399
+ name: yard
400
+ requirement: !ruby/object:Gem::Requirement
401
+ none: false
402
+ requirements:
403
+ - - ! '>='
404
+ - !ruby/object:Gem::Version
405
+ version: '0'
406
+ type: :development
407
+ prerelease: false
408
+ version_requirements: !ruby/object:Gem::Requirement
409
+ none: false
410
+ requirements:
411
+ - - ! '>='
412
+ - !ruby/object:Gem::Version
413
+ version: '0'
414
+ description: Geospatial MetaData ToolKit for use in a GeoHydra head
415
+ email:
416
+ - drh@stanford.edu
417
+ executables:
418
+ - accession.rb
419
+ - assemble.rb
420
+ - assemble_data.rb
421
+ - assemble_placenames.rb
422
+ - build_stage_options.rb
423
+ - derive_wgs84.rb
424
+ - extract_thumbnail.rb
425
+ - geohydra
426
+ - ingest_arcgis.rb
427
+ - ingest_tufts.rb
428
+ - loader.rb
429
+ - loader_postgis.rb
430
+ - seed.rb
431
+ - solr_indexer.rb
432
+ - sync_geoserver_metadata.rb
433
+ - validate_data.rb
434
+ extensions: []
435
+ extra_rdoc_files: []
436
+ files:
437
+ - .gitignore
438
+ - .gitmodules
439
+ - .travis.yml
440
+ - Gemfile
441
+ - Gemfile.lock
442
+ - LICENSE
443
+ - README.md
444
+ - Rakefile
445
+ - VERSION
446
+ - bin/accession.rb
447
+ - bin/assemble.rb
448
+ - bin/assemble_data.rb
449
+ - bin/assemble_placenames.rb
450
+ - bin/build_stage_options.rb
451
+ - bin/derive_wgs84.rb
452
+ - bin/extract_thumbnail.rb
453
+ - bin/geohydra
454
+ - bin/ingest_arcgis.rb
455
+ - bin/ingest_tufts.rb
456
+ - bin/loader.rb
457
+ - bin/loader_postgis.rb
458
+ - bin/seed.rb
459
+ - bin/solr_indexer.rb
460
+ - bin/sync_geoserver_metadata.rb
461
+ - bin/validate_data.rb
462
+ - config/.gitignore
463
+ - config/boot.rb
464
+ - config/database.yml
465
+ - config/environments/.gitignore
466
+ - config/environments/.gitkeep
467
+ - config/environments/example.rb
468
+ - config/environments/example_rgeoserver.yml
469
+ - config/migrate.rb
470
+ - geohydra.gemspec
471
+ - lib/geohydra.rb
472
+ - lib/geohydra/accession.rb
473
+ - lib/geohydra/arcgis_to_iso19139_fc.xsl
474
+ - lib/geohydra/gazetteer.csv
475
+ - lib/geohydra/gazetteer.rb
476
+ - lib/geohydra/geonetwork.rb
477
+ - lib/geohydra/mods2ogp.xsl
478
+ - lib/geohydra/ogpcleanup.xsl
479
+ - lib/geohydra/solr.rb
480
+ - lib/geohydra/transform.rb
481
+ - lib/geohydra/utils.rb
482
+ - lib/geohydra/version.rb
483
+ - scripts/correct_collections.rb
484
+ - scripts/dbfdump.rb
485
+ - scripts/extract.xsl
486
+ - scripts/geoserver_createdb.sh
487
+ - scripts/geoserver_createdb.sql
488
+ - scripts/geowebcache_tops.rb
489
+ - scripts/ingest_mods.rb
490
+ - scripts/iso2html/displayElement.xsl
491
+ - scripts/iso2html/elements-ISO.xml
492
+ - scripts/iso2html/headers-ISO.xml
493
+ - scripts/iso2html/printFormatted.xsl
494
+ - scripts/iso2html/printtextlines.xsl
495
+ - scripts/iso2html/xml-to-html-ISO.xsl
496
+ - scripts/iso2html/xml-to-text-ISO.xsl
497
+ - scripts/load_stage_data.rb
498
+ - scripts/nextgis_iso19115.xsl
499
+ - scripts/replicate_db.sh
500
+ - scripts/report_stage.rb
501
+ - solr/dev.html
502
+ - solr/dlss-dev-drh-geo/conf/schema.xml
503
+ - solr/dlss-dev-drh-geo/conf/solrconfig.xml
504
+ - solr/dlss-dev-drh-geo/deploy.sh
505
+ - solr/dlss-dev-drh-geo/example_doc.xml
506
+ - solr/dlss-dev-drh-geo/test.sh
507
+ - solr/ogp-dev/conf/admin-extra.html
508
+ - solr/ogp-dev/conf/admin-extra.menu-bottom.html
509
+ - solr/ogp-dev/conf/admin-extra.menu-top.html
510
+ - solr/ogp-dev/conf/currency.xml
511
+ - solr/ogp-dev/conf/elevate.xml
512
+ - solr/ogp-dev/conf/lang/contractions_ca.txt
513
+ - solr/ogp-dev/conf/lang/contractions_fr.txt
514
+ - solr/ogp-dev/conf/lang/contractions_ga.txt
515
+ - solr/ogp-dev/conf/lang/contractions_it.txt
516
+ - solr/ogp-dev/conf/lang/hyphenations_ga.txt
517
+ - solr/ogp-dev/conf/lang/stemdict_nl.txt
518
+ - solr/ogp-dev/conf/lang/stoptags_ja.txt
519
+ - solr/ogp-dev/conf/lang/stopwords_ar.txt
520
+ - solr/ogp-dev/conf/lang/stopwords_bg.txt
521
+ - solr/ogp-dev/conf/lang/stopwords_ca.txt
522
+ - solr/ogp-dev/conf/lang/stopwords_cz.txt
523
+ - solr/ogp-dev/conf/lang/stopwords_da.txt
524
+ - solr/ogp-dev/conf/lang/stopwords_de.txt
525
+ - solr/ogp-dev/conf/lang/stopwords_el.txt
526
+ - solr/ogp-dev/conf/lang/stopwords_en.txt
527
+ - solr/ogp-dev/conf/lang/stopwords_es.txt
528
+ - solr/ogp-dev/conf/lang/stopwords_eu.txt
529
+ - solr/ogp-dev/conf/lang/stopwords_fa.txt
530
+ - solr/ogp-dev/conf/lang/stopwords_fi.txt
531
+ - solr/ogp-dev/conf/lang/stopwords_fr.txt
532
+ - solr/ogp-dev/conf/lang/stopwords_ga.txt
533
+ - solr/ogp-dev/conf/lang/stopwords_gl.txt
534
+ - solr/ogp-dev/conf/lang/stopwords_hi.txt
535
+ - solr/ogp-dev/conf/lang/stopwords_hu.txt
536
+ - solr/ogp-dev/conf/lang/stopwords_hy.txt
537
+ - solr/ogp-dev/conf/lang/stopwords_id.txt
538
+ - solr/ogp-dev/conf/lang/stopwords_it.txt
539
+ - solr/ogp-dev/conf/lang/stopwords_ja.txt
540
+ - solr/ogp-dev/conf/lang/stopwords_lv.txt
541
+ - solr/ogp-dev/conf/lang/stopwords_nl.txt
542
+ - solr/ogp-dev/conf/lang/stopwords_no.txt
543
+ - solr/ogp-dev/conf/lang/stopwords_pt.txt
544
+ - solr/ogp-dev/conf/lang/stopwords_ro.txt
545
+ - solr/ogp-dev/conf/lang/stopwords_ru.txt
546
+ - solr/ogp-dev/conf/lang/stopwords_sv.txt
547
+ - solr/ogp-dev/conf/lang/stopwords_th.txt
548
+ - solr/ogp-dev/conf/lang/stopwords_tr.txt
549
+ - solr/ogp-dev/conf/lang/userdict_ja.txt
550
+ - solr/ogp-dev/conf/mapping-FoldToASCII.txt
551
+ - solr/ogp-dev/conf/mapping-ISOLatin1Accent.txt
552
+ - solr/ogp-dev/conf/protwords.txt
553
+ - solr/ogp-dev/conf/schema.xml
554
+ - solr/ogp-dev/conf/scripts.conf
555
+ - solr/ogp-dev/conf/solrconfig.xml
556
+ - solr/ogp-dev/conf/spellings.txt
557
+ - solr/ogp-dev/conf/stopwords.txt
558
+ - solr/ogp-dev/conf/synonyms.txt
559
+ - solr/ogp-dev/conf/synonymsIso.txt
560
+ - solr/ogp-dev/conf/synonymsLcsh.txt
561
+ - solr/ogp-dev/conf/synonymsState.txt
562
+ - solr/ogp-dev/conf/update-script.js
563
+ - solr/ogp-dev/conf/velocity/VM_global_library.vm
564
+ - solr/ogp-dev/conf/velocity/browse.vm
565
+ - solr/ogp-dev/conf/velocity/cluster.vm
566
+ - solr/ogp-dev/conf/velocity/clusterResults.vm
567
+ - solr/ogp-dev/conf/velocity/debug.vm
568
+ - solr/ogp-dev/conf/velocity/did_you_mean.vm
569
+ - solr/ogp-dev/conf/velocity/facet_fields.vm
570
+ - solr/ogp-dev/conf/velocity/facet_pivot.vm
571
+ - solr/ogp-dev/conf/velocity/facet_queries.vm
572
+ - solr/ogp-dev/conf/velocity/facet_ranges.vm
573
+ - solr/ogp-dev/conf/velocity/facets.vm
574
+ - solr/ogp-dev/conf/velocity/footer.vm
575
+ - solr/ogp-dev/conf/velocity/head.vm
576
+ - solr/ogp-dev/conf/velocity/header.vm
577
+ - solr/ogp-dev/conf/velocity/hit.vm
578
+ - solr/ogp-dev/conf/velocity/hitGrouped.vm
579
+ - solr/ogp-dev/conf/velocity/join-doc.vm
580
+ - solr/ogp-dev/conf/velocity/jquery.autocomplete.css
581
+ - solr/ogp-dev/conf/velocity/jquery.autocomplete.js
582
+ - solr/ogp-dev/conf/velocity/layout.vm
583
+ - solr/ogp-dev/conf/velocity/main.css
584
+ - solr/ogp-dev/conf/velocity/product-doc.vm
585
+ - solr/ogp-dev/conf/velocity/query.vm
586
+ - solr/ogp-dev/conf/velocity/queryGroup.vm
587
+ - solr/ogp-dev/conf/velocity/querySpatial.vm
588
+ - solr/ogp-dev/conf/velocity/richtext-doc.vm
589
+ - solr/ogp-dev/conf/velocity/suggest.vm
590
+ - solr/ogp-dev/conf/velocity/tabs.vm
591
+ - solr/ogp-dev/conf/xslt/example.xsl
592
+ - solr/ogp-dev/conf/xslt/example_atom.xsl
593
+ - solr/ogp-dev/conf/xslt/example_rss.xsl
594
+ - solr/ogp-dev/conf/xslt/luke.xsl
595
+ - solr/ogp-dev/conf/xslt/updateXml.xsl
596
+ - solr/ogp-dev/deploy.sh
597
+ - solr/ogp-dev/purge.sh
598
+ - solr/ogp-dev/upload.sh
599
+ - solr/ogp-test/conf/admin-extra.html
600
+ - solr/ogp-test/conf/admin-extra.menu-bottom.html
601
+ - solr/ogp-test/conf/admin-extra.menu-top.html
602
+ - solr/ogp-test/conf/currency.xml
603
+ - solr/ogp-test/conf/elevate.xml
604
+ - solr/ogp-test/conf/lang/contractions_ca.txt
605
+ - solr/ogp-test/conf/lang/contractions_fr.txt
606
+ - solr/ogp-test/conf/lang/contractions_ga.txt
607
+ - solr/ogp-test/conf/lang/contractions_it.txt
608
+ - solr/ogp-test/conf/lang/hyphenations_ga.txt
609
+ - solr/ogp-test/conf/lang/stemdict_nl.txt
610
+ - solr/ogp-test/conf/lang/stoptags_ja.txt
611
+ - solr/ogp-test/conf/lang/stopwords_ar.txt
612
+ - solr/ogp-test/conf/lang/stopwords_bg.txt
613
+ - solr/ogp-test/conf/lang/stopwords_ca.txt
614
+ - solr/ogp-test/conf/lang/stopwords_cz.txt
615
+ - solr/ogp-test/conf/lang/stopwords_da.txt
616
+ - solr/ogp-test/conf/lang/stopwords_de.txt
617
+ - solr/ogp-test/conf/lang/stopwords_el.txt
618
+ - solr/ogp-test/conf/lang/stopwords_en.txt
619
+ - solr/ogp-test/conf/lang/stopwords_es.txt
620
+ - solr/ogp-test/conf/lang/stopwords_eu.txt
621
+ - solr/ogp-test/conf/lang/stopwords_fa.txt
622
+ - solr/ogp-test/conf/lang/stopwords_fi.txt
623
+ - solr/ogp-test/conf/lang/stopwords_fr.txt
624
+ - solr/ogp-test/conf/lang/stopwords_ga.txt
625
+ - solr/ogp-test/conf/lang/stopwords_gl.txt
626
+ - solr/ogp-test/conf/lang/stopwords_hi.txt
627
+ - solr/ogp-test/conf/lang/stopwords_hu.txt
628
+ - solr/ogp-test/conf/lang/stopwords_hy.txt
629
+ - solr/ogp-test/conf/lang/stopwords_id.txt
630
+ - solr/ogp-test/conf/lang/stopwords_it.txt
631
+ - solr/ogp-test/conf/lang/stopwords_ja.txt
632
+ - solr/ogp-test/conf/lang/stopwords_lv.txt
633
+ - solr/ogp-test/conf/lang/stopwords_nl.txt
634
+ - solr/ogp-test/conf/lang/stopwords_no.txt
635
+ - solr/ogp-test/conf/lang/stopwords_pt.txt
636
+ - solr/ogp-test/conf/lang/stopwords_ro.txt
637
+ - solr/ogp-test/conf/lang/stopwords_ru.txt
638
+ - solr/ogp-test/conf/lang/stopwords_sv.txt
639
+ - solr/ogp-test/conf/lang/stopwords_th.txt
640
+ - solr/ogp-test/conf/lang/stopwords_tr.txt
641
+ - solr/ogp-test/conf/lang/userdict_ja.txt
642
+ - solr/ogp-test/conf/mapping-FoldToASCII.txt
643
+ - solr/ogp-test/conf/mapping-ISOLatin1Accent.txt
644
+ - solr/ogp-test/conf/protwords.txt
645
+ - solr/ogp-test/conf/schema.xml
646
+ - solr/ogp-test/conf/scripts.conf
647
+ - solr/ogp-test/conf/solrconfig.xml
648
+ - solr/ogp-test/conf/spellings.txt
649
+ - solr/ogp-test/conf/stopwords.txt
650
+ - solr/ogp-test/conf/synonyms.txt
651
+ - solr/ogp-test/conf/synonymsIso.txt
652
+ - solr/ogp-test/conf/synonymsLcsh.txt
653
+ - solr/ogp-test/conf/synonymsState.txt
654
+ - solr/ogp-test/conf/update-script.js
655
+ - solr/ogp-test/conf/velocity/VM_global_library.vm
656
+ - solr/ogp-test/conf/velocity/browse.vm
657
+ - solr/ogp-test/conf/velocity/cluster.vm
658
+ - solr/ogp-test/conf/velocity/clusterResults.vm
659
+ - solr/ogp-test/conf/velocity/debug.vm
660
+ - solr/ogp-test/conf/velocity/did_you_mean.vm
661
+ - solr/ogp-test/conf/velocity/facet_fields.vm
662
+ - solr/ogp-test/conf/velocity/facet_pivot.vm
663
+ - solr/ogp-test/conf/velocity/facet_queries.vm
664
+ - solr/ogp-test/conf/velocity/facet_ranges.vm
665
+ - solr/ogp-test/conf/velocity/facets.vm
666
+ - solr/ogp-test/conf/velocity/footer.vm
667
+ - solr/ogp-test/conf/velocity/head.vm
668
+ - solr/ogp-test/conf/velocity/header.vm
669
+ - solr/ogp-test/conf/velocity/hit.vm
670
+ - solr/ogp-test/conf/velocity/hitGrouped.vm
671
+ - solr/ogp-test/conf/velocity/join-doc.vm
672
+ - solr/ogp-test/conf/velocity/jquery.autocomplete.css
673
+ - solr/ogp-test/conf/velocity/jquery.autocomplete.js
674
+ - solr/ogp-test/conf/velocity/layout.vm
675
+ - solr/ogp-test/conf/velocity/main.css
676
+ - solr/ogp-test/conf/velocity/product-doc.vm
677
+ - solr/ogp-test/conf/velocity/query.vm
678
+ - solr/ogp-test/conf/velocity/queryGroup.vm
679
+ - solr/ogp-test/conf/velocity/querySpatial.vm
680
+ - solr/ogp-test/conf/velocity/richtext-doc.vm
681
+ - solr/ogp-test/conf/velocity/suggest.vm
682
+ - solr/ogp-test/conf/velocity/tabs.vm
683
+ - solr/ogp-test/conf/xslt/example.xsl
684
+ - solr/ogp-test/conf/xslt/example_atom.xsl
685
+ - solr/ogp-test/conf/xslt/example_rss.xsl
686
+ - solr/ogp-test/conf/xslt/luke.xsl
687
+ - solr/ogp-test/conf/xslt/updateXml.xsl
688
+ - solr/ogp-test/deploy.sh
689
+ - solr/ogp-test/purge.sh
690
+ - solr/ogp-test/upload.sh
691
+ - solr/ogp/conf/admin-extra.html
692
+ - solr/ogp/conf/admin-extra.menu-bottom.html
693
+ - solr/ogp/conf/admin-extra.menu-top.html
694
+ - solr/ogp/conf/currency.xml
695
+ - solr/ogp/conf/elevate.xml
696
+ - solr/ogp/conf/lang/contractions_ca.txt
697
+ - solr/ogp/conf/lang/contractions_fr.txt
698
+ - solr/ogp/conf/lang/contractions_ga.txt
699
+ - solr/ogp/conf/lang/contractions_it.txt
700
+ - solr/ogp/conf/lang/hyphenations_ga.txt
701
+ - solr/ogp/conf/lang/stemdict_nl.txt
702
+ - solr/ogp/conf/lang/stoptags_ja.txt
703
+ - solr/ogp/conf/lang/stopwords_ar.txt
704
+ - solr/ogp/conf/lang/stopwords_bg.txt
705
+ - solr/ogp/conf/lang/stopwords_ca.txt
706
+ - solr/ogp/conf/lang/stopwords_cz.txt
707
+ - solr/ogp/conf/lang/stopwords_da.txt
708
+ - solr/ogp/conf/lang/stopwords_de.txt
709
+ - solr/ogp/conf/lang/stopwords_el.txt
710
+ - solr/ogp/conf/lang/stopwords_en.txt
711
+ - solr/ogp/conf/lang/stopwords_es.txt
712
+ - solr/ogp/conf/lang/stopwords_eu.txt
713
+ - solr/ogp/conf/lang/stopwords_fa.txt
714
+ - solr/ogp/conf/lang/stopwords_fi.txt
715
+ - solr/ogp/conf/lang/stopwords_fr.txt
716
+ - solr/ogp/conf/lang/stopwords_ga.txt
717
+ - solr/ogp/conf/lang/stopwords_gl.txt
718
+ - solr/ogp/conf/lang/stopwords_hi.txt
719
+ - solr/ogp/conf/lang/stopwords_hu.txt
720
+ - solr/ogp/conf/lang/stopwords_hy.txt
721
+ - solr/ogp/conf/lang/stopwords_id.txt
722
+ - solr/ogp/conf/lang/stopwords_it.txt
723
+ - solr/ogp/conf/lang/stopwords_ja.txt
724
+ - solr/ogp/conf/lang/stopwords_lv.txt
725
+ - solr/ogp/conf/lang/stopwords_nl.txt
726
+ - solr/ogp/conf/lang/stopwords_no.txt
727
+ - solr/ogp/conf/lang/stopwords_pt.txt
728
+ - solr/ogp/conf/lang/stopwords_ro.txt
729
+ - solr/ogp/conf/lang/stopwords_ru.txt
730
+ - solr/ogp/conf/lang/stopwords_sv.txt
731
+ - solr/ogp/conf/lang/stopwords_th.txt
732
+ - solr/ogp/conf/lang/stopwords_tr.txt
733
+ - solr/ogp/conf/lang/userdict_ja.txt
734
+ - solr/ogp/conf/mapping-FoldToASCII.txt
735
+ - solr/ogp/conf/mapping-ISOLatin1Accent.txt
736
+ - solr/ogp/conf/protwords.txt
737
+ - solr/ogp/conf/schema.xml
738
+ - solr/ogp/conf/scripts.conf
739
+ - solr/ogp/conf/solrconfig.xml
740
+ - solr/ogp/conf/spellings.txt
741
+ - solr/ogp/conf/stopwords.txt
742
+ - solr/ogp/conf/synonyms.txt
743
+ - solr/ogp/conf/synonymsIso.txt
744
+ - solr/ogp/conf/synonymsLcsh.txt
745
+ - solr/ogp/conf/synonymsState.txt
746
+ - solr/ogp/conf/update-script.js
747
+ - solr/ogp/conf/velocity/VM_global_library.vm
748
+ - solr/ogp/conf/velocity/browse.vm
749
+ - solr/ogp/conf/velocity/cluster.vm
750
+ - solr/ogp/conf/velocity/clusterResults.vm
751
+ - solr/ogp/conf/velocity/debug.vm
752
+ - solr/ogp/conf/velocity/did_you_mean.vm
753
+ - solr/ogp/conf/velocity/facet_fields.vm
754
+ - solr/ogp/conf/velocity/facet_pivot.vm
755
+ - solr/ogp/conf/velocity/facet_queries.vm
756
+ - solr/ogp/conf/velocity/facet_ranges.vm
757
+ - solr/ogp/conf/velocity/facets.vm
758
+ - solr/ogp/conf/velocity/footer.vm
759
+ - solr/ogp/conf/velocity/head.vm
760
+ - solr/ogp/conf/velocity/header.vm
761
+ - solr/ogp/conf/velocity/hit.vm
762
+ - solr/ogp/conf/velocity/hitGrouped.vm
763
+ - solr/ogp/conf/velocity/join-doc.vm
764
+ - solr/ogp/conf/velocity/jquery.autocomplete.css
765
+ - solr/ogp/conf/velocity/jquery.autocomplete.js
766
+ - solr/ogp/conf/velocity/layout.vm
767
+ - solr/ogp/conf/velocity/main.css
768
+ - solr/ogp/conf/velocity/product-doc.vm
769
+ - solr/ogp/conf/velocity/query.vm
770
+ - solr/ogp/conf/velocity/queryGroup.vm
771
+ - solr/ogp/conf/velocity/querySpatial.vm
772
+ - solr/ogp/conf/velocity/richtext-doc.vm
773
+ - solr/ogp/conf/velocity/suggest.vm
774
+ - solr/ogp/conf/velocity/tabs.vm
775
+ - solr/ogp/conf/xslt/example.xsl
776
+ - solr/ogp/conf/xslt/example_atom.xsl
777
+ - solr/ogp/conf/xslt/example_rss.xsl
778
+ - solr/ogp/conf/xslt/luke.xsl
779
+ - solr/ogp/conf/xslt/updateXml.xsl
780
+ - solr/ogp/deploy.sh
781
+ - solr/ogp/upload.sh
782
+ - spec/fixtures/bw938nk9584/metadata/geoMetadata.xml
783
+ - spec/fixtures/bw938nk9584/temp/TRIPURA-iso19139-fc.xml
784
+ - spec/fixtures/bw938nk9584/temp/TRIPURA-iso19139.xml
785
+ - spec/fixtures/cc142xj8436/metadata/geoMetadata.xml
786
+ - spec/fixtures/cc142xj8436/temp/HARYANA-iso19139-fc.xml
787
+ - spec/fixtures/cc142xj8436/temp/HARYANA-iso19139.xml
788
+ - spec/fixtures/cg716wc7949/metadata/geoMetadata.xml
789
+ - spec/fixtures/cg716wc7949/temp/metadata.iso19139-fc.xml
790
+ - spec/fixtures/cg716wc7949/temp/metadata.iso19139.xml
791
+ - spec/fixtures/cm007pv9601/metadata/geoMetadata.xml
792
+ - spec/fixtures/cm007pv9601/temp/MEGHALAYA-iso19139-fc.xml
793
+ - spec/fixtures/cm007pv9601/temp/MEGHALAYA-iso19139.xml
794
+ - spec/fixtures/cp055nb0189/metadata/geoMetadata.xml
795
+ - spec/fixtures/cp055nb0189/temp/metadata.iso19139-fc.xml
796
+ - spec/fixtures/cp055nb0189/temp/metadata.iso19139.xml
797
+ - spec/fixtures/cs838pw3418/metadata/geoMetadata.xml
798
+ - spec/fixtures/cs838pw3418/temp/OIL_GAS_FIELDS-iso19139-fc.xml
799
+ - spec/fixtures/cs838pw3418/temp/OIL_GAS_FIELDS-iso19139.xml
800
+ - spec/fixtures/dd308sy5843/metadata/geoMetadata.xml
801
+ - spec/fixtures/dd308sy5843/temp/ORISSA-iso19139-fc.xml
802
+ - spec/fixtures/dd308sy5843/temp/ORISSA-iso19139.xml
803
+ - spec/fixtures/dd452vk1873/metadata/geoMetadata.xml
804
+ - spec/fixtures/dd452vk1873/temp/metadata.iso19139-fc.xml
805
+ - spec/fixtures/dd452vk1873/temp/metadata.iso19139.xml
806
+ - spec/fixtures/dg850pt1796/metadata/geoMetadata.xml
807
+ - spec/fixtures/dg850pt1796/temp/STATE1951-iso19139-fc.xml
808
+ - spec/fixtures/dg850pt1796/temp/STATE1951-iso19139.xml
809
+ - spec/fixtures/dn744tf5427/metadata/geoMetadata.xml
810
+ - spec/fixtures/dn744tf5427/temp/DISTRICT1991-iso19139-fc.xml
811
+ - spec/fixtures/dn744tf5427/temp/DISTRICT1991-iso19139.xml
812
+ - spec/fixtures/dq603nz8402/metadata/geoMetadata.xml
813
+ - spec/fixtures/dq603nz8402/temp/STATE2001-iso19139-fc.xml
814
+ - spec/fixtures/dq603nz8402/temp/STATE2001-iso19139.xml
815
+ - spec/fixtures/dv609zt4699/metadata/geoMetadata.xml
816
+ - spec/fixtures/dv609zt4699/temp/ASSAM-iso19139-fc.xml
817
+ - spec/fixtures/dv609zt4699/temp/ASSAM-iso19139.xml
818
+ - spec/fixtures/dz222hw0585/metadata/geoMetadata.xml
819
+ - spec/fixtures/dz222hw0585/temp/PUNJAB-iso19139-fc.xml
820
+ - spec/fixtures/dz222hw0585/temp/PUNJAB-iso19139.xml
821
+ - spec/fixtures/fd673qb9705/metadata/geoMetadata.xml
822
+ - spec/fixtures/fd673qb9705/temp/STATE1971-iso19139-fc.xml
823
+ - spec/fixtures/fd673qb9705/temp/STATE1971-iso19139.xml
824
+ - spec/fixtures/fg451wp8917/metadata/geoMetadata.xml
825
+ - spec/fixtures/fg451wp8917/temp/SIKKIM-iso19139-fc.xml
826
+ - spec/fixtures/fg451wp8917/temp/SIKKIM-iso19139.xml
827
+ - spec/fixtures/fh247yz0156/metadata/geoMetadata.xml
828
+ - spec/fixtures/fh247yz0156/temp/RAJASTHAN-iso19139-fc.xml
829
+ - spec/fixtures/fh247yz0156/temp/RAJASTHAN-iso19139.xml
830
+ - spec/fixtures/fs487vd1465/metadata/geoMetadata.xml
831
+ - spec/fixtures/fs487vd1465/temp/CHHATTISGARH-iso19139-fc.xml
832
+ - spec/fixtures/fs487vd1465/temp/CHHATTISGARH-iso19139.xml
833
+ - spec/fixtures/fs591bn3317/metadata/geoMetadata.xml
834
+ - spec/fixtures/fs591bn3317/temp/HIMACHAL_PRADESH-iso19139-fc.xml
835
+ - spec/fixtures/fs591bn3317/temp/HIMACHAL_PRADESH-iso19139.xml
836
+ - spec/fixtures/fw920bc5473/metadata/geoMetadata.xml
837
+ - spec/fixtures/fw920bc5473/temp/PLSS_TWN-iso19139-fc.xml
838
+ - spec/fixtures/fw920bc5473/temp/PLSS_TWN-iso19139.xml
839
+ - spec/fixtures/gj831wj3625/metadata/geoMetadata.xml
840
+ - spec/fixtures/gj831wj3625/temp/metadata.iso19139-fc.xml
841
+ - spec/fixtures/gj831wj3625/temp/metadata.iso19139.xml
842
+ - spec/fixtures/gp075nv3265/metadata/geoMetadata.xml
843
+ - spec/fixtures/gp075nv3265/temp/PONDICHERRY-iso19139-fc.xml
844
+ - spec/fixtures/gp075nv3265/temp/PONDICHERRY-iso19139.xml
845
+ - spec/fixtures/gv800hj8141/metadata/geoMetadata.xml
846
+ - spec/fixtures/gv800hj8141/temp/BIHAR-iso19139-fc.xml
847
+ - spec/fixtures/gv800hj8141/temp/BIHAR-iso19139.xml
848
+ - spec/fixtures/gw520gz6339/metadata/geoMetadata.xml
849
+ - spec/fixtures/gw520gz6339/temp/DADRA_NAGAR_HAVELI_PT-iso19139-fc.xml
850
+ - spec/fixtures/gw520gz6339/temp/DADRA_NAGAR_HAVELI_PT-iso19139.xml
851
+ - spec/fixtures/gy054hz1045/metadata/geoMetadata.xml
852
+ - spec/fixtures/gy054hz1045/temp/HARYANA-iso19139-fc.xml
853
+ - spec/fixtures/gy054hz1045/temp/HARYANA-iso19139.xml
854
+ - spec/fixtures/gz352mw6982/metadata/geoMetadata.xml
855
+ - spec/fixtures/gz352mw6982/temp/metadata.iso19139-fc.xml
856
+ - spec/fixtures/gz352mw6982/temp/metadata.iso19139.xml
857
+ - spec/fixtures/hb489vm9892/metadata/geoMetadata.xml
858
+ - spec/fixtures/hb489vm9892/temp/DISTRICT1981-iso19139-fc.xml
859
+ - spec/fixtures/hb489vm9892/temp/DISTRICT1981-iso19139.xml
860
+ - spec/fixtures/hw125dq0418/metadata/geoMetadata.xml
861
+ - spec/fixtures/hw125dq0418/temp/DELHI-iso19139-fc.xml
862
+ - spec/fixtures/hw125dq0418/temp/DELHI-iso19139.xml
863
+ - spec/fixtures/hw892mn4587/metadata/geoMetadata.xml
864
+ - spec/fixtures/hw892mn4587/temp/KERALA-iso19139-fc.xml
865
+ - spec/fixtures/hw892mn4587/temp/KERALA-iso19139.xml
866
+ - spec/fixtures/jb371hz3868/metadata/geoMetadata.xml
867
+ - spec/fixtures/jb371hz3868/temp/INCOME-iso19139-fc.xml
868
+ - spec/fixtures/jb371hz3868/temp/INCOME-iso19139.xml
869
+ - spec/fixtures/jc017yk9928/metadata/geoMetadata.xml
870
+ - spec/fixtures/jc017yk9928/temp/KARNATAKA-iso19139-fc.xml
871
+ - spec/fixtures/jc017yk9928/temp/KARNATAKA-iso19139.xml
872
+ - spec/fixtures/jf841ys4828/metadata/geoMetadata.xml
873
+ - spec/fixtures/jf841ys4828/temp/ANDHRA_PRADESH-iso19139-fc.xml
874
+ - spec/fixtures/jf841ys4828/temp/ANDHRA_PRADESH-iso19139.xml
875
+ - spec/fixtures/jh802mp2160/metadata/geoMetadata.xml
876
+ - spec/fixtures/jh802mp2160/temp/DELHI_PT-iso19139-fc.xml
877
+ - spec/fixtures/jh802mp2160/temp/DELHI_PT-iso19139.xml
878
+ - spec/fixtures/jj806fc3801/metadata/geoMetadata.xml
879
+ - spec/fixtures/jj806fc3801/temp/metadata.iso19139-fc.xml
880
+ - spec/fixtures/jj806fc3801/temp/metadata.iso19139.xml
881
+ - spec/fixtures/jq835yn7161/metadata/geoMetadata.xml
882
+ - spec/fixtures/jq835yn7161/temp/HIMACHAL_PRADESH-iso19139-fc.xml
883
+ - spec/fixtures/jq835yn7161/temp/HIMACHAL_PRADESH-iso19139.xml
884
+ - spec/fixtures/jr455pt6676/metadata/geoMetadata.xml
885
+ - spec/fixtures/jr455pt6676/temp/TAMILNADU-iso19139-fc.xml
886
+ - spec/fixtures/jr455pt6676/temp/TAMILNADU-iso19139.xml
887
+ - spec/fixtures/js637zp2537/metadata/geoMetadata.xml
888
+ - spec/fixtures/js637zp2537/temp/BIHAR-iso19139-fc.xml
889
+ - spec/fixtures/js637zp2537/temp/BIHAR-iso19139.xml
890
+ - spec/fixtures/jv502wg9611/metadata/geoMetadata.xml
891
+ - spec/fixtures/jv502wg9611/temp/GOA-iso19139-fc.xml
892
+ - spec/fixtures/jv502wg9611/temp/GOA-iso19139.xml
893
+ - spec/fixtures/jw462ck6560/metadata/geoMetadata.xml
894
+ - spec/fixtures/jw462ck6560/temp/JAMMU_KASHMIR-iso19139-fc.xml
895
+ - spec/fixtures/jw462ck6560/temp/JAMMU_KASHMIR-iso19139.xml
896
+ - spec/fixtures/kj800fb6273/metadata/geoMetadata.xml
897
+ - spec/fixtures/kj800fb6273/temp/STATE2011-iso19139-fc.xml
898
+ - spec/fixtures/kj800fb6273/temp/STATE2011-iso19139.xml
899
+ - spec/fixtures/km504zq3948/metadata/geoMetadata.xml
900
+ - spec/fixtures/km504zq3948/temp/HIMACHAL_PRADESH-iso19139-fc.xml
901
+ - spec/fixtures/km504zq3948/temp/HIMACHAL_PRADESH-iso19139.xml
902
+ - spec/fixtures/ks297fy1411/metadata/geoMetadata.xml
903
+ - spec/fixtures/ks297fy1411/temp/OFFSH_BLOCKS-iso19139-fc.xml
904
+ - spec/fixtures/ks297fy1411/temp/OFFSH_BLOCKS-iso19139.xml
905
+ - spec/fixtures/md358hy5049/metadata/geoMetadata.xml
906
+ - spec/fixtures/md358hy5049/temp/MIZORAM-iso19139-fc.xml
907
+ - spec/fixtures/md358hy5049/temp/MIZORAM-iso19139.xml
908
+ - spec/fixtures/mg745bq0193/metadata/geoMetadata.xml
909
+ - spec/fixtures/mg745bq0193/temp/MADHYA_PRADESH-iso19139-fc.xml
910
+ - spec/fixtures/mg745bq0193/temp/MADHYA_PRADESH-iso19139.xml
911
+ - spec/fixtures/mh187yx3536/metadata/geoMetadata.xml
912
+ - spec/fixtures/mh187yx3536/temp/WEST_BENGAL-iso19139-fc.xml
913
+ - spec/fixtures/mh187yx3536/temp/WEST_BENGAL-iso19139.xml
914
+ - spec/fixtures/mk488yn6694/metadata/geoMetadata.xml
915
+ - spec/fixtures/mk488yn6694/temp/GUJARAT-iso19139-fc.xml
916
+ - spec/fixtures/mk488yn6694/temp/GUJARAT-iso19139.xml
917
+ - spec/fixtures/my216kp3008/metadata/geoMetadata.xml
918
+ - spec/fixtures/my216kp3008/temp/DELHI-iso19139-fc.xml
919
+ - spec/fixtures/my216kp3008/temp/DELHI-iso19139.xml
920
+ - spec/fixtures/my504nz9827/metadata/geoMetadata.xml
921
+ - spec/fixtures/my504nz9827/temp/JAMMU_KASHMIR-iso19139-fc.xml
922
+ - spec/fixtures/my504nz9827/temp/JAMMU_KASHMIR-iso19139.xml
923
+ - spec/fixtures/ng819jm8700/metadata/geoMetadata.xml
924
+ - spec/fixtures/ng819jm8700/temp/MANIPUR-iso19139-fc.xml
925
+ - spec/fixtures/ng819jm8700/temp/MANIPUR-iso19139.xml
926
+ - spec/fixtures/np020jq2139/metadata/geoMetadata.xml
927
+ - spec/fixtures/np020jq2139/temp/metadata.iso19139-fc.xml
928
+ - spec/fixtures/np020jq2139/temp/metadata.iso19139.xml
929
+ - spec/fixtures/ns377mt1608/metadata/geoMetadata.xml
930
+ - spec/fixtures/ns377mt1608/temp/STATE1991-iso19139-fc.xml
931
+ - spec/fixtures/ns377mt1608/temp/STATE1991-iso19139.xml
932
+ - spec/fixtures/nw926np8508/metadata/geoMetadata.xml
933
+ - spec/fixtures/nw926np8508/temp/metadata.iso19139-fc.xml
934
+ - spec/fixtures/nw926np8508/temp/metadata.iso19139.xml
935
+ - spec/fixtures/ny358rm8559/metadata/geoMetadata.xml
936
+ - spec/fixtures/ny358rm8559/temp/TRIPURA-iso19139-fc.xml
937
+ - spec/fixtures/ny358rm8559/temp/TRIPURA-iso19139.xml
938
+ - spec/fixtures/nz176rm8192/metadata/geoMetadata.xml
939
+ - spec/fixtures/nz176rm8192/temp/DISTRICT2011-iso19139-fc.xml
940
+ - spec/fixtures/nz176rm8192/temp/DISTRICT2011-iso19139.xml
941
+ - spec/fixtures/nz252rq2252/metadata/geoMetadata.xml
942
+ - spec/fixtures/nz252rq2252/temp/UTTAR_PRADESH-iso19139-fc.xml
943
+ - spec/fixtures/nz252rq2252/temp/UTTAR_PRADESH-iso19139.xml
944
+ - spec/fixtures/pd902kb3348/metadata/geoMetadata.xml
945
+ - spec/fixtures/pd902kb3348/temp/MADHYA_PRADESH-iso19139-fc.xml
946
+ - spec/fixtures/pd902kb3348/temp/MADHYA_PRADESH-iso19139.xml
947
+ - spec/fixtures/pz792fz1776/metadata/geoMetadata.xml
948
+ - spec/fixtures/pz792fz1776/temp/MAHARASHTRA-iso19139-fc.xml
949
+ - spec/fixtures/pz792fz1776/temp/MAHARASHTRA-iso19139.xml
950
+ - spec/fixtures/qb767ss4042/metadata/geoMetadata.xml
951
+ - spec/fixtures/qb767ss4042/temp/UTTAR_PRADESH-iso19139-fc.xml
952
+ - spec/fixtures/qb767ss4042/temp/UTTAR_PRADESH-iso19139.xml
953
+ - spec/fixtures/qc091qw0570/metadata/geoMetadata.xml
954
+ - spec/fixtures/qc091qw0570/temp/GUJARAT-iso19139-fc.xml
955
+ - spec/fixtures/qc091qw0570/temp/GUJARAT-iso19139.xml
956
+ - spec/fixtures/qc652vr7204/metadata/geoMetadata.xml
957
+ - spec/fixtures/qc652vr7204/temp/ANDHRA_PRADESH_PT-iso19139-fc.xml
958
+ - spec/fixtures/qc652vr7204/temp/ANDHRA_PRADESH_PT-iso19139.xml
959
+ - spec/fixtures/qk786js7484/metadata/geoMetadata.xml
960
+ - spec/fixtures/qk786js7484/temp/DISTRICT1961-iso19139-fc.xml
961
+ - spec/fixtures/qk786js7484/temp/DISTRICT1961-iso19139.xml
962
+ - spec/fixtures/qn676pg6767/metadata/geoMetadata.xml
963
+ - spec/fixtures/qn676pg6767/temp/GOA-iso19139-fc.xml
964
+ - spec/fixtures/qn676pg6767/temp/GOA-iso19139.xml
965
+ - spec/fixtures/qr255jh4074/metadata/geoMetadata.xml
966
+ - spec/fixtures/qr255jh4074/temp/LOKSABHA_14-iso19139-fc.xml
967
+ - spec/fixtures/qr255jh4074/temp/LOKSABHA_14-iso19139.xml
968
+ - spec/fixtures/qr374kj4827/metadata/geoMetadata.xml
969
+ - spec/fixtures/qr374kj4827/temp/ASSAM-iso19139-fc.xml
970
+ - spec/fixtures/qr374kj4827/temp/ASSAM-iso19139.xml
971
+ - spec/fixtures/qy162js1748/metadata/geoMetadata.xml
972
+ - spec/fixtures/qy162js1748/temp/CHHATTISGARH-iso19139-fc.xml
973
+ - spec/fixtures/qy162js1748/temp/CHHATTISGARH-iso19139.xml
974
+ - spec/fixtures/rd446vf2633/metadata/geoMetadata.xml
975
+ - spec/fixtures/rd446vf2633/temp/NAGALAND-iso19139-fc.xml
976
+ - spec/fixtures/rd446vf2633/temp/NAGALAND-iso19139.xml
977
+ - spec/fixtures/rf389hf2983/metadata/geoMetadata.xml
978
+ - spec/fixtures/rf389hf2983/temp/CHHATTISGARH_PT-iso19139-fc.xml
979
+ - spec/fixtures/rf389hf2983/temp/CHHATTISGARH_PT-iso19139.xml
980
+ - spec/fixtures/rf859ff4582/metadata/geoMetadata.xml
981
+ - spec/fixtures/rf859ff4582/temp/JHARKHAND-iso19139-fc.xml
982
+ - spec/fixtures/rf859ff4582/temp/JHARKHAND-iso19139.xml
983
+ - spec/fixtures/rh343ds8931/metadata/geoMetadata.xml
984
+ - spec/fixtures/rh343ds8931/temp/BIHAR-iso19139-fc.xml
985
+ - spec/fixtures/rh343ds8931/temp/BIHAR-iso19139.xml
986
+ - spec/fixtures/rn815xk8157/metadata/geoMetadata.xml
987
+ - spec/fixtures/rn815xk8157/temp/SIKKIM-iso19139-fc.xml
988
+ - spec/fixtures/rn815xk8157/temp/SIKKIM-iso19139.xml
989
+ - spec/fixtures/rq653sz4470/metadata/geoMetadata.xml
990
+ - spec/fixtures/rq653sz4470/temp/CHHATTISGARH-iso19139-fc.xml
991
+ - spec/fixtures/rq653sz4470/temp/CHHATTISGARH-iso19139.xml
992
+ - spec/fixtures/rt625ws6022/metadata/geoMetadata.xml
993
+ - spec/fixtures/rt625ws6022/temp/GULF_FAIRWAYS-iso19139-fc.xml
994
+ - spec/fixtures/rt625ws6022/temp/GULF_FAIRWAYS-iso19139.xml
995
+ - spec/fixtures/sc330vf4259/metadata/geoMetadata.xml
996
+ - spec/fixtures/sc330vf4259/temp/JHARKHAND-iso19139-fc.xml
997
+ - spec/fixtures/sc330vf4259/temp/JHARKHAND-iso19139.xml
998
+ - spec/fixtures/sq479mx3086/metadata/geoMetadata.xml
999
+ - spec/fixtures/sq479mx3086/temp/OFFSH_PLATF-iso19139-fc.xml
1000
+ - spec/fixtures/sq479mx3086/temp/OFFSH_PLATF-iso19139.xml
1001
+ - spec/fixtures/sr686bm4098/metadata/geoMetadata.xml
1002
+ - spec/fixtures/sr686bm4098/temp/DAMAN_DIU_PT-iso19139-fc.xml
1003
+ - spec/fixtures/sr686bm4098/temp/DAMAN_DIU_PT-iso19139.xml
1004
+ - spec/fixtures/sv303sh5583/metadata/geoMetadata.xml
1005
+ - spec/fixtures/sv303sh5583/temp/ARUNACHAL_PRADESH-iso19139-fc.xml
1006
+ - spec/fixtures/sv303sh5583/temp/ARUNACHAL_PRADESH-iso19139.xml
1007
+ - spec/fixtures/sy319nh8520/metadata/geoMetadata.xml
1008
+ - spec/fixtures/sy319nh8520/temp/GUJARAT-iso19139-fc.xml
1009
+ - spec/fixtures/sy319nh8520/temp/GUJARAT-iso19139.xml
1010
+ - spec/fixtures/td363vx2792/metadata/geoMetadata.xml
1011
+ - spec/fixtures/td363vx2792/temp/HIMACHAL_PRADESH_PT-iso19139-fc.xml
1012
+ - spec/fixtures/td363vx2792/temp/HIMACHAL_PRADESH_PT-iso19139.xml
1013
+ - spec/fixtures/tf374bd2484/metadata/geoMetadata.xml
1014
+ - spec/fixtures/tf374bd2484/temp/DISTRICT1951-iso19139-fc.xml
1015
+ - spec/fixtures/tf374bd2484/temp/DISTRICT1951-iso19139.xml
1016
+ - spec/fixtures/tj797mj7877/metadata/geoMetadata.xml
1017
+ - spec/fixtures/tj797mj7877/temp/LOKSABHA_15-iso19139-fc.xml
1018
+ - spec/fixtures/tj797mj7877/temp/LOKSABHA_15-iso19139.xml
1019
+ - spec/fixtures/tv060wq5179/metadata/geoMetadata.xml
1020
+ - spec/fixtures/tv060wq5179/temp/ASSAM-iso19139-fc.xml
1021
+ - spec/fixtures/tv060wq5179/temp/ASSAM-iso19139.xml
1022
+ - spec/fixtures/tv536bn1915/metadata/geoMetadata.xml
1023
+ - spec/fixtures/tv536bn1915/temp/ARUNACHAL_PRADESH-iso19139-fc.xml
1024
+ - spec/fixtures/tv536bn1915/temp/ARUNACHAL_PRADESH-iso19139.xml
1025
+ - spec/fixtures/tz359cc2977/metadata/geoMetadata.xml
1026
+ - spec/fixtures/tz359cc2977/temp/MANIPUR-iso19139-fc.xml
1027
+ - spec/fixtures/tz359cc2977/temp/MANIPUR-iso19139.xml
1028
+ - spec/fixtures/vb525my6511/metadata/geoMetadata.xml
1029
+ - spec/fixtures/vb525my6511/temp/UTTARAKHAND-iso19139-fc.xml
1030
+ - spec/fixtures/vb525my6511/temp/UTTARAKHAND-iso19139.xml
1031
+ - spec/fixtures/vh802fs4240/metadata/geoMetadata.xml
1032
+ - spec/fixtures/vh802fs4240/temp/PONDICHERRY-iso19139-fc.xml
1033
+ - spec/fixtures/vh802fs4240/temp/PONDICHERRY-iso19139.xml
1034
+ - spec/fixtures/vk120xn2474/metadata/geoMetadata.xml
1035
+ - spec/fixtures/vk120xn2474/temp/PLSS_SEC-iso19139-fc.xml
1036
+ - spec/fixtures/vk120xn2474/temp/PLSS_SEC-iso19139.xml
1037
+ - spec/fixtures/vn439bc7316/metadata/geoMetadata.xml
1038
+ - spec/fixtures/vn439bc7316/temp/KERALA-iso19139-fc.xml
1039
+ - spec/fixtures/vn439bc7316/temp/KERALA-iso19139.xml
1040
+ - spec/fixtures/vq745jk0695/metadata/geoMetadata.xml
1041
+ - spec/fixtures/vq745jk0695/temp/MEGHALAYA-iso19139-fc.xml
1042
+ - spec/fixtures/vq745jk0695/temp/MEGHALAYA-iso19139.xml
1043
+ - spec/fixtures/vr593vj7147/metadata/geoMetadata.xml
1044
+ - spec/fixtures/vr593vj7147/temp/ANDHRA_PRADESH-iso19139-fc.xml
1045
+ - spec/fixtures/vr593vj7147/temp/ANDHRA_PRADESH-iso19139.xml
1046
+ - spec/fixtures/vw911qb5271/metadata/geoMetadata.xml
1047
+ - spec/fixtures/vw911qb5271/temp/DISTRICT2001-iso19139-fc.xml
1048
+ - spec/fixtures/vw911qb5271/temp/DISTRICT2001-iso19139.xml
1049
+ - spec/fixtures/wg680pz0365/metadata/geoMetadata.xml
1050
+ - spec/fixtures/wg680pz0365/temp/ANDHRA_PRADESH-iso19139-fc.xml
1051
+ - spec/fixtures/wg680pz0365/temp/ANDHRA_PRADESH-iso19139.xml
1052
+ - spec/fixtures/wg761xn1926/metadata/geoMetadata.xml
1053
+ - spec/fixtures/wg761xn1926/temp/HARYANA-iso19139-fc.xml
1054
+ - spec/fixtures/wg761xn1926/temp/HARYANA-iso19139.xml
1055
+ - spec/fixtures/wh870qw1934/metadata/geoMetadata.xml
1056
+ - spec/fixtures/wh870qw1934/temp/PUNJAB-iso19139-fc.xml
1057
+ - spec/fixtures/wh870qw1934/temp/PUNJAB-iso19139.xml
1058
+ - spec/fixtures/wk775mm4673/metadata/geoMetadata.xml
1059
+ - spec/fixtures/wk775mm4673/temp/MAHARASHTRA-iso19139-fc.xml
1060
+ - spec/fixtures/wk775mm4673/temp/MAHARASHTRA-iso19139.xml
1061
+ - spec/fixtures/ws171yz2165/metadata/geoMetadata.xml
1062
+ - spec/fixtures/ws171yz2165/temp/ARUNACHAL_PRADESH_PT-iso19139-fc.xml
1063
+ - spec/fixtures/ws171yz2165/temp/ARUNACHAL_PRADESH_PT-iso19139.xml
1064
+ - spec/fixtures/wt473hz7153/metadata/geoMetadata.xml
1065
+ - spec/fixtures/wt473hz7153/temp/CHANDIGARH_PT-iso19139-fc.xml
1066
+ - spec/fixtures/wt473hz7153/temp/CHANDIGARH_PT-iso19139.xml
1067
+ - spec/fixtures/ww217dj0457/metadata/geoMetadata.xml
1068
+ - spec/fixtures/ww217dj0457/temp/CO2_PIPE-iso19139-fc.xml
1069
+ - spec/fixtures/ww217dj0457/temp/CO2_PIPE-iso19139.xml
1070
+ - spec/fixtures/wy875pk9849/metadata/geoMetadata.xml
1071
+ - spec/fixtures/wy875pk9849/temp/STATE1961-iso19139-fc.xml
1072
+ - spec/fixtures/wy875pk9849/temp/STATE1961-iso19139.xml
1073
+ - spec/fixtures/xb018tk2042/metadata/geoMetadata.xml
1074
+ - spec/fixtures/xb018tk2042/temp/STATE1981-iso19139-fc.xml
1075
+ - spec/fixtures/xb018tk2042/temp/STATE1981-iso19139.xml
1076
+ - spec/fixtures/xg539vw8586/metadata/geoMetadata.xml
1077
+ - spec/fixtures/xg539vw8586/temp/ORISSA-iso19139-fc.xml
1078
+ - spec/fixtures/xg539vw8586/temp/ORISSA-iso19139.xml
1079
+ - spec/fixtures/xv475kp4644/metadata/geoMetadata.xml
1080
+ - spec/fixtures/xv475kp4644/temp/ASSAM_PT-iso19139-fc.xml
1081
+ - spec/fixtures/xv475kp4644/temp/ASSAM_PT-iso19139.xml
1082
+ - spec/fixtures/xy096gc2959/metadata/geoMetadata.xml
1083
+ - spec/fixtures/xy096gc2959/temp/GOA-iso19139-fc.xml
1084
+ - spec/fixtures/xy096gc2959/temp/GOA-iso19139.xml
1085
+ - spec/fixtures/xz518gz3362/metadata/geoMetadata.xml
1086
+ - spec/fixtures/xz518gz3362/temp/UTTARAKHAND-iso19139-fc.xml
1087
+ - spec/fixtures/xz518gz3362/temp/UTTARAKHAND-iso19139.xml
1088
+ - spec/fixtures/yh986wy4737/metadata/geoMetadata.xml
1089
+ - spec/fixtures/yh986wy4737/temp/NAGALAND-iso19139-fc.xml
1090
+ - spec/fixtures/yh986wy4737/temp/NAGALAND-iso19139.xml
1091
+ - spec/fixtures/yn187fq4474/metadata/geoMetadata.xml
1092
+ - spec/fixtures/yn187fq4474/temp/KARNATAKA-iso19139-fc.xml
1093
+ - spec/fixtures/yn187fq4474/temp/KARNATAKA-iso19139.xml
1094
+ - spec/fixtures/yn236mw3250/metadata/geoMetadata.xml
1095
+ - spec/fixtures/yn236mw3250/temp/TAMILNADU-iso19139-fc.xml
1096
+ - spec/fixtures/yn236mw3250/temp/TAMILNADU-iso19139.xml
1097
+ - spec/fixtures/yz596nz0112/metadata/geoMetadata.xml
1098
+ - spec/fixtures/yz596nz0112/temp/WEST_BENGAL-iso19139-fc.xml
1099
+ - spec/fixtures/yz596nz0112/temp/WEST_BENGAL-iso19139.xml
1100
+ - spec/fixtures/zk596gy7380/metadata/geoMetadata.xml
1101
+ - spec/fixtures/zk596gy7380/temp/DISTRICT1971-iso19139-fc.xml
1102
+ - spec/fixtures/zk596gy7380/temp/DISTRICT1971-iso19139.xml
1103
+ - spec/fixtures/zn452hh7431/metadata/geoMetadata.xml
1104
+ - spec/fixtures/zn452hh7431/temp/RAJASTHAN-iso19139-fc.xml
1105
+ - spec/fixtures/zn452hh7431/temp/RAJASTHAN-iso19139.xml
1106
+ - spec/fixtures/zt093fw6519/metadata/geoMetadata.xml
1107
+ - spec/fixtures/zt093fw6519/temp/MIZORAM-iso19139-fc.xml
1108
+ - spec/fixtures/zt093fw6519/temp/MIZORAM-iso19139.xml
1109
+ - spec/fixtures/zv925hd6723/metadata/geoMetadata.xml
1110
+ - spec/fixtures/zv925hd6723/temp/OGWELLS-iso19139-fc.xml
1111
+ - spec/fixtures/zv925hd6723/temp/OGWELLS-iso19139.xml
1112
+ - spec/fixtures/zy658cr1728/metadata/geoMetadata.xml
1113
+ - spec/fixtures/zy658cr1728/temp/ANDAMAAN_NICOBAR_PT-iso19139-fc.xml
1114
+ - spec/fixtures/zy658cr1728/temp/ANDAMAAN_NICOBAR_PT-iso19139.xml
1115
+ - spec/fixtures/zz943vx1492/metadata/geoMetadata.xml
1116
+ - spec/fixtures/zz943vx1492/temp/BASINS-iso19139-fc.xml
1117
+ - spec/fixtures/zz943vx1492/temp/BASINS-iso19139.xml
1118
+ - spec/integration/solr_spec_notready.rb
1119
+ - spec/test_net_ssh_krb.rb
1120
+ - spec/unit/gazetteer_spec.rb
1121
+ - spec/unit/transform_spec.rb
1122
+ - spec/unit/utils_spec.rb
1123
+ homepage: https://github.com/sul-dlss/geohydra
1124
+ licenses:
1125
+ - ALv2
1126
+ - Stanford University
1127
+ post_install_message:
1128
+ rdoc_options: []
1129
+ require_paths:
1130
+ - lib
1131
+ required_ruby_version: !ruby/object:Gem::Requirement
1132
+ none: false
1133
+ requirements:
1134
+ - - ~>
1135
+ - !ruby/object:Gem::Version
1136
+ version: 1.9.3
1137
+ required_rubygems_version: !ruby/object:Gem::Requirement
1138
+ none: false
1139
+ requirements:
1140
+ - - ! '>='
1141
+ - !ruby/object:Gem::Version
1142
+ version: '0'
1143
+ requirements: []
1144
+ rubyforge_project:
1145
+ rubygems_version: 1.8.25
1146
+ signing_key:
1147
+ specification_version: 3
1148
+ summary: GeoHydra
1149
+ test_files:
1150
+ - spec/fixtures/bw938nk9584/metadata/geoMetadata.xml
1151
+ - spec/fixtures/bw938nk9584/temp/TRIPURA-iso19139-fc.xml
1152
+ - spec/fixtures/bw938nk9584/temp/TRIPURA-iso19139.xml
1153
+ - spec/fixtures/cc142xj8436/metadata/geoMetadata.xml
1154
+ - spec/fixtures/cc142xj8436/temp/HARYANA-iso19139-fc.xml
1155
+ - spec/fixtures/cc142xj8436/temp/HARYANA-iso19139.xml
1156
+ - spec/fixtures/cg716wc7949/metadata/geoMetadata.xml
1157
+ - spec/fixtures/cg716wc7949/temp/metadata.iso19139-fc.xml
1158
+ - spec/fixtures/cg716wc7949/temp/metadata.iso19139.xml
1159
+ - spec/fixtures/cm007pv9601/metadata/geoMetadata.xml
1160
+ - spec/fixtures/cm007pv9601/temp/MEGHALAYA-iso19139-fc.xml
1161
+ - spec/fixtures/cm007pv9601/temp/MEGHALAYA-iso19139.xml
1162
+ - spec/fixtures/cp055nb0189/metadata/geoMetadata.xml
1163
+ - spec/fixtures/cp055nb0189/temp/metadata.iso19139-fc.xml
1164
+ - spec/fixtures/cp055nb0189/temp/metadata.iso19139.xml
1165
+ - spec/fixtures/cs838pw3418/metadata/geoMetadata.xml
1166
+ - spec/fixtures/cs838pw3418/temp/OIL_GAS_FIELDS-iso19139-fc.xml
1167
+ - spec/fixtures/cs838pw3418/temp/OIL_GAS_FIELDS-iso19139.xml
1168
+ - spec/fixtures/dd308sy5843/metadata/geoMetadata.xml
1169
+ - spec/fixtures/dd308sy5843/temp/ORISSA-iso19139-fc.xml
1170
+ - spec/fixtures/dd308sy5843/temp/ORISSA-iso19139.xml
1171
+ - spec/fixtures/dd452vk1873/metadata/geoMetadata.xml
1172
+ - spec/fixtures/dd452vk1873/temp/metadata.iso19139-fc.xml
1173
+ - spec/fixtures/dd452vk1873/temp/metadata.iso19139.xml
1174
+ - spec/fixtures/dg850pt1796/metadata/geoMetadata.xml
1175
+ - spec/fixtures/dg850pt1796/temp/STATE1951-iso19139-fc.xml
1176
+ - spec/fixtures/dg850pt1796/temp/STATE1951-iso19139.xml
1177
+ - spec/fixtures/dn744tf5427/metadata/geoMetadata.xml
1178
+ - spec/fixtures/dn744tf5427/temp/DISTRICT1991-iso19139-fc.xml
1179
+ - spec/fixtures/dn744tf5427/temp/DISTRICT1991-iso19139.xml
1180
+ - spec/fixtures/dq603nz8402/metadata/geoMetadata.xml
1181
+ - spec/fixtures/dq603nz8402/temp/STATE2001-iso19139-fc.xml
1182
+ - spec/fixtures/dq603nz8402/temp/STATE2001-iso19139.xml
1183
+ - spec/fixtures/dv609zt4699/metadata/geoMetadata.xml
1184
+ - spec/fixtures/dv609zt4699/temp/ASSAM-iso19139-fc.xml
1185
+ - spec/fixtures/dv609zt4699/temp/ASSAM-iso19139.xml
1186
+ - spec/fixtures/dz222hw0585/metadata/geoMetadata.xml
1187
+ - spec/fixtures/dz222hw0585/temp/PUNJAB-iso19139-fc.xml
1188
+ - spec/fixtures/dz222hw0585/temp/PUNJAB-iso19139.xml
1189
+ - spec/fixtures/fd673qb9705/metadata/geoMetadata.xml
1190
+ - spec/fixtures/fd673qb9705/temp/STATE1971-iso19139-fc.xml
1191
+ - spec/fixtures/fd673qb9705/temp/STATE1971-iso19139.xml
1192
+ - spec/fixtures/fg451wp8917/metadata/geoMetadata.xml
1193
+ - spec/fixtures/fg451wp8917/temp/SIKKIM-iso19139-fc.xml
1194
+ - spec/fixtures/fg451wp8917/temp/SIKKIM-iso19139.xml
1195
+ - spec/fixtures/fh247yz0156/metadata/geoMetadata.xml
1196
+ - spec/fixtures/fh247yz0156/temp/RAJASTHAN-iso19139-fc.xml
1197
+ - spec/fixtures/fh247yz0156/temp/RAJASTHAN-iso19139.xml
1198
+ - spec/fixtures/fs487vd1465/metadata/geoMetadata.xml
1199
+ - spec/fixtures/fs487vd1465/temp/CHHATTISGARH-iso19139-fc.xml
1200
+ - spec/fixtures/fs487vd1465/temp/CHHATTISGARH-iso19139.xml
1201
+ - spec/fixtures/fs591bn3317/metadata/geoMetadata.xml
1202
+ - spec/fixtures/fs591bn3317/temp/HIMACHAL_PRADESH-iso19139-fc.xml
1203
+ - spec/fixtures/fs591bn3317/temp/HIMACHAL_PRADESH-iso19139.xml
1204
+ - spec/fixtures/fw920bc5473/metadata/geoMetadata.xml
1205
+ - spec/fixtures/fw920bc5473/temp/PLSS_TWN-iso19139-fc.xml
1206
+ - spec/fixtures/fw920bc5473/temp/PLSS_TWN-iso19139.xml
1207
+ - spec/fixtures/gj831wj3625/metadata/geoMetadata.xml
1208
+ - spec/fixtures/gj831wj3625/temp/metadata.iso19139-fc.xml
1209
+ - spec/fixtures/gj831wj3625/temp/metadata.iso19139.xml
1210
+ - spec/fixtures/gp075nv3265/metadata/geoMetadata.xml
1211
+ - spec/fixtures/gp075nv3265/temp/PONDICHERRY-iso19139-fc.xml
1212
+ - spec/fixtures/gp075nv3265/temp/PONDICHERRY-iso19139.xml
1213
+ - spec/fixtures/gv800hj8141/metadata/geoMetadata.xml
1214
+ - spec/fixtures/gv800hj8141/temp/BIHAR-iso19139-fc.xml
1215
+ - spec/fixtures/gv800hj8141/temp/BIHAR-iso19139.xml
1216
+ - spec/fixtures/gw520gz6339/metadata/geoMetadata.xml
1217
+ - spec/fixtures/gw520gz6339/temp/DADRA_NAGAR_HAVELI_PT-iso19139-fc.xml
1218
+ - spec/fixtures/gw520gz6339/temp/DADRA_NAGAR_HAVELI_PT-iso19139.xml
1219
+ - spec/fixtures/gy054hz1045/metadata/geoMetadata.xml
1220
+ - spec/fixtures/gy054hz1045/temp/HARYANA-iso19139-fc.xml
1221
+ - spec/fixtures/gy054hz1045/temp/HARYANA-iso19139.xml
1222
+ - spec/fixtures/gz352mw6982/metadata/geoMetadata.xml
1223
+ - spec/fixtures/gz352mw6982/temp/metadata.iso19139-fc.xml
1224
+ - spec/fixtures/gz352mw6982/temp/metadata.iso19139.xml
1225
+ - spec/fixtures/hb489vm9892/metadata/geoMetadata.xml
1226
+ - spec/fixtures/hb489vm9892/temp/DISTRICT1981-iso19139-fc.xml
1227
+ - spec/fixtures/hb489vm9892/temp/DISTRICT1981-iso19139.xml
1228
+ - spec/fixtures/hw125dq0418/metadata/geoMetadata.xml
1229
+ - spec/fixtures/hw125dq0418/temp/DELHI-iso19139-fc.xml
1230
+ - spec/fixtures/hw125dq0418/temp/DELHI-iso19139.xml
1231
+ - spec/fixtures/hw892mn4587/metadata/geoMetadata.xml
1232
+ - spec/fixtures/hw892mn4587/temp/KERALA-iso19139-fc.xml
1233
+ - spec/fixtures/hw892mn4587/temp/KERALA-iso19139.xml
1234
+ - spec/fixtures/jb371hz3868/metadata/geoMetadata.xml
1235
+ - spec/fixtures/jb371hz3868/temp/INCOME-iso19139-fc.xml
1236
+ - spec/fixtures/jb371hz3868/temp/INCOME-iso19139.xml
1237
+ - spec/fixtures/jc017yk9928/metadata/geoMetadata.xml
1238
+ - spec/fixtures/jc017yk9928/temp/KARNATAKA-iso19139-fc.xml
1239
+ - spec/fixtures/jc017yk9928/temp/KARNATAKA-iso19139.xml
1240
+ - spec/fixtures/jf841ys4828/metadata/geoMetadata.xml
1241
+ - spec/fixtures/jf841ys4828/temp/ANDHRA_PRADESH-iso19139-fc.xml
1242
+ - spec/fixtures/jf841ys4828/temp/ANDHRA_PRADESH-iso19139.xml
1243
+ - spec/fixtures/jh802mp2160/metadata/geoMetadata.xml
1244
+ - spec/fixtures/jh802mp2160/temp/DELHI_PT-iso19139-fc.xml
1245
+ - spec/fixtures/jh802mp2160/temp/DELHI_PT-iso19139.xml
1246
+ - spec/fixtures/jj806fc3801/metadata/geoMetadata.xml
1247
+ - spec/fixtures/jj806fc3801/temp/metadata.iso19139-fc.xml
1248
+ - spec/fixtures/jj806fc3801/temp/metadata.iso19139.xml
1249
+ - spec/fixtures/jq835yn7161/metadata/geoMetadata.xml
1250
+ - spec/fixtures/jq835yn7161/temp/HIMACHAL_PRADESH-iso19139-fc.xml
1251
+ - spec/fixtures/jq835yn7161/temp/HIMACHAL_PRADESH-iso19139.xml
1252
+ - spec/fixtures/jr455pt6676/metadata/geoMetadata.xml
1253
+ - spec/fixtures/jr455pt6676/temp/TAMILNADU-iso19139-fc.xml
1254
+ - spec/fixtures/jr455pt6676/temp/TAMILNADU-iso19139.xml
1255
+ - spec/fixtures/js637zp2537/metadata/geoMetadata.xml
1256
+ - spec/fixtures/js637zp2537/temp/BIHAR-iso19139-fc.xml
1257
+ - spec/fixtures/js637zp2537/temp/BIHAR-iso19139.xml
1258
+ - spec/fixtures/jv502wg9611/metadata/geoMetadata.xml
1259
+ - spec/fixtures/jv502wg9611/temp/GOA-iso19139-fc.xml
1260
+ - spec/fixtures/jv502wg9611/temp/GOA-iso19139.xml
1261
+ - spec/fixtures/jw462ck6560/metadata/geoMetadata.xml
1262
+ - spec/fixtures/jw462ck6560/temp/JAMMU_KASHMIR-iso19139-fc.xml
1263
+ - spec/fixtures/jw462ck6560/temp/JAMMU_KASHMIR-iso19139.xml
1264
+ - spec/fixtures/kj800fb6273/metadata/geoMetadata.xml
1265
+ - spec/fixtures/kj800fb6273/temp/STATE2011-iso19139-fc.xml
1266
+ - spec/fixtures/kj800fb6273/temp/STATE2011-iso19139.xml
1267
+ - spec/fixtures/km504zq3948/metadata/geoMetadata.xml
1268
+ - spec/fixtures/km504zq3948/temp/HIMACHAL_PRADESH-iso19139-fc.xml
1269
+ - spec/fixtures/km504zq3948/temp/HIMACHAL_PRADESH-iso19139.xml
1270
+ - spec/fixtures/ks297fy1411/metadata/geoMetadata.xml
1271
+ - spec/fixtures/ks297fy1411/temp/OFFSH_BLOCKS-iso19139-fc.xml
1272
+ - spec/fixtures/ks297fy1411/temp/OFFSH_BLOCKS-iso19139.xml
1273
+ - spec/fixtures/md358hy5049/metadata/geoMetadata.xml
1274
+ - spec/fixtures/md358hy5049/temp/MIZORAM-iso19139-fc.xml
1275
+ - spec/fixtures/md358hy5049/temp/MIZORAM-iso19139.xml
1276
+ - spec/fixtures/mg745bq0193/metadata/geoMetadata.xml
1277
+ - spec/fixtures/mg745bq0193/temp/MADHYA_PRADESH-iso19139-fc.xml
1278
+ - spec/fixtures/mg745bq0193/temp/MADHYA_PRADESH-iso19139.xml
1279
+ - spec/fixtures/mh187yx3536/metadata/geoMetadata.xml
1280
+ - spec/fixtures/mh187yx3536/temp/WEST_BENGAL-iso19139-fc.xml
1281
+ - spec/fixtures/mh187yx3536/temp/WEST_BENGAL-iso19139.xml
1282
+ - spec/fixtures/mk488yn6694/metadata/geoMetadata.xml
1283
+ - spec/fixtures/mk488yn6694/temp/GUJARAT-iso19139-fc.xml
1284
+ - spec/fixtures/mk488yn6694/temp/GUJARAT-iso19139.xml
1285
+ - spec/fixtures/my216kp3008/metadata/geoMetadata.xml
1286
+ - spec/fixtures/my216kp3008/temp/DELHI-iso19139-fc.xml
1287
+ - spec/fixtures/my216kp3008/temp/DELHI-iso19139.xml
1288
+ - spec/fixtures/my504nz9827/metadata/geoMetadata.xml
1289
+ - spec/fixtures/my504nz9827/temp/JAMMU_KASHMIR-iso19139-fc.xml
1290
+ - spec/fixtures/my504nz9827/temp/JAMMU_KASHMIR-iso19139.xml
1291
+ - spec/fixtures/ng819jm8700/metadata/geoMetadata.xml
1292
+ - spec/fixtures/ng819jm8700/temp/MANIPUR-iso19139-fc.xml
1293
+ - spec/fixtures/ng819jm8700/temp/MANIPUR-iso19139.xml
1294
+ - spec/fixtures/np020jq2139/metadata/geoMetadata.xml
1295
+ - spec/fixtures/np020jq2139/temp/metadata.iso19139-fc.xml
1296
+ - spec/fixtures/np020jq2139/temp/metadata.iso19139.xml
1297
+ - spec/fixtures/ns377mt1608/metadata/geoMetadata.xml
1298
+ - spec/fixtures/ns377mt1608/temp/STATE1991-iso19139-fc.xml
1299
+ - spec/fixtures/ns377mt1608/temp/STATE1991-iso19139.xml
1300
+ - spec/fixtures/nw926np8508/metadata/geoMetadata.xml
1301
+ - spec/fixtures/nw926np8508/temp/metadata.iso19139-fc.xml
1302
+ - spec/fixtures/nw926np8508/temp/metadata.iso19139.xml
1303
+ - spec/fixtures/ny358rm8559/metadata/geoMetadata.xml
1304
+ - spec/fixtures/ny358rm8559/temp/TRIPURA-iso19139-fc.xml
1305
+ - spec/fixtures/ny358rm8559/temp/TRIPURA-iso19139.xml
1306
+ - spec/fixtures/nz176rm8192/metadata/geoMetadata.xml
1307
+ - spec/fixtures/nz176rm8192/temp/DISTRICT2011-iso19139-fc.xml
1308
+ - spec/fixtures/nz176rm8192/temp/DISTRICT2011-iso19139.xml
1309
+ - spec/fixtures/nz252rq2252/metadata/geoMetadata.xml
1310
+ - spec/fixtures/nz252rq2252/temp/UTTAR_PRADESH-iso19139-fc.xml
1311
+ - spec/fixtures/nz252rq2252/temp/UTTAR_PRADESH-iso19139.xml
1312
+ - spec/fixtures/pd902kb3348/metadata/geoMetadata.xml
1313
+ - spec/fixtures/pd902kb3348/temp/MADHYA_PRADESH-iso19139-fc.xml
1314
+ - spec/fixtures/pd902kb3348/temp/MADHYA_PRADESH-iso19139.xml
1315
+ - spec/fixtures/pz792fz1776/metadata/geoMetadata.xml
1316
+ - spec/fixtures/pz792fz1776/temp/MAHARASHTRA-iso19139-fc.xml
1317
+ - spec/fixtures/pz792fz1776/temp/MAHARASHTRA-iso19139.xml
1318
+ - spec/fixtures/qb767ss4042/metadata/geoMetadata.xml
1319
+ - spec/fixtures/qb767ss4042/temp/UTTAR_PRADESH-iso19139-fc.xml
1320
+ - spec/fixtures/qb767ss4042/temp/UTTAR_PRADESH-iso19139.xml
1321
+ - spec/fixtures/qc091qw0570/metadata/geoMetadata.xml
1322
+ - spec/fixtures/qc091qw0570/temp/GUJARAT-iso19139-fc.xml
1323
+ - spec/fixtures/qc091qw0570/temp/GUJARAT-iso19139.xml
1324
+ - spec/fixtures/qc652vr7204/metadata/geoMetadata.xml
1325
+ - spec/fixtures/qc652vr7204/temp/ANDHRA_PRADESH_PT-iso19139-fc.xml
1326
+ - spec/fixtures/qc652vr7204/temp/ANDHRA_PRADESH_PT-iso19139.xml
1327
+ - spec/fixtures/qk786js7484/metadata/geoMetadata.xml
1328
+ - spec/fixtures/qk786js7484/temp/DISTRICT1961-iso19139-fc.xml
1329
+ - spec/fixtures/qk786js7484/temp/DISTRICT1961-iso19139.xml
1330
+ - spec/fixtures/qn676pg6767/metadata/geoMetadata.xml
1331
+ - spec/fixtures/qn676pg6767/temp/GOA-iso19139-fc.xml
1332
+ - spec/fixtures/qn676pg6767/temp/GOA-iso19139.xml
1333
+ - spec/fixtures/qr255jh4074/metadata/geoMetadata.xml
1334
+ - spec/fixtures/qr255jh4074/temp/LOKSABHA_14-iso19139-fc.xml
1335
+ - spec/fixtures/qr255jh4074/temp/LOKSABHA_14-iso19139.xml
1336
+ - spec/fixtures/qr374kj4827/metadata/geoMetadata.xml
1337
+ - spec/fixtures/qr374kj4827/temp/ASSAM-iso19139-fc.xml
1338
+ - spec/fixtures/qr374kj4827/temp/ASSAM-iso19139.xml
1339
+ - spec/fixtures/qy162js1748/metadata/geoMetadata.xml
1340
+ - spec/fixtures/qy162js1748/temp/CHHATTISGARH-iso19139-fc.xml
1341
+ - spec/fixtures/qy162js1748/temp/CHHATTISGARH-iso19139.xml
1342
+ - spec/fixtures/rd446vf2633/metadata/geoMetadata.xml
1343
+ - spec/fixtures/rd446vf2633/temp/NAGALAND-iso19139-fc.xml
1344
+ - spec/fixtures/rd446vf2633/temp/NAGALAND-iso19139.xml
1345
+ - spec/fixtures/rf389hf2983/metadata/geoMetadata.xml
1346
+ - spec/fixtures/rf389hf2983/temp/CHHATTISGARH_PT-iso19139-fc.xml
1347
+ - spec/fixtures/rf389hf2983/temp/CHHATTISGARH_PT-iso19139.xml
1348
+ - spec/fixtures/rf859ff4582/metadata/geoMetadata.xml
1349
+ - spec/fixtures/rf859ff4582/temp/JHARKHAND-iso19139-fc.xml
1350
+ - spec/fixtures/rf859ff4582/temp/JHARKHAND-iso19139.xml
1351
+ - spec/fixtures/rh343ds8931/metadata/geoMetadata.xml
1352
+ - spec/fixtures/rh343ds8931/temp/BIHAR-iso19139-fc.xml
1353
+ - spec/fixtures/rh343ds8931/temp/BIHAR-iso19139.xml
1354
+ - spec/fixtures/rn815xk8157/metadata/geoMetadata.xml
1355
+ - spec/fixtures/rn815xk8157/temp/SIKKIM-iso19139-fc.xml
1356
+ - spec/fixtures/rn815xk8157/temp/SIKKIM-iso19139.xml
1357
+ - spec/fixtures/rq653sz4470/metadata/geoMetadata.xml
1358
+ - spec/fixtures/rq653sz4470/temp/CHHATTISGARH-iso19139-fc.xml
1359
+ - spec/fixtures/rq653sz4470/temp/CHHATTISGARH-iso19139.xml
1360
+ - spec/fixtures/rt625ws6022/metadata/geoMetadata.xml
1361
+ - spec/fixtures/rt625ws6022/temp/GULF_FAIRWAYS-iso19139-fc.xml
1362
+ - spec/fixtures/rt625ws6022/temp/GULF_FAIRWAYS-iso19139.xml
1363
+ - spec/fixtures/sc330vf4259/metadata/geoMetadata.xml
1364
+ - spec/fixtures/sc330vf4259/temp/JHARKHAND-iso19139-fc.xml
1365
+ - spec/fixtures/sc330vf4259/temp/JHARKHAND-iso19139.xml
1366
+ - spec/fixtures/sq479mx3086/metadata/geoMetadata.xml
1367
+ - spec/fixtures/sq479mx3086/temp/OFFSH_PLATF-iso19139-fc.xml
1368
+ - spec/fixtures/sq479mx3086/temp/OFFSH_PLATF-iso19139.xml
1369
+ - spec/fixtures/sr686bm4098/metadata/geoMetadata.xml
1370
+ - spec/fixtures/sr686bm4098/temp/DAMAN_DIU_PT-iso19139-fc.xml
1371
+ - spec/fixtures/sr686bm4098/temp/DAMAN_DIU_PT-iso19139.xml
1372
+ - spec/fixtures/sv303sh5583/metadata/geoMetadata.xml
1373
+ - spec/fixtures/sv303sh5583/temp/ARUNACHAL_PRADESH-iso19139-fc.xml
1374
+ - spec/fixtures/sv303sh5583/temp/ARUNACHAL_PRADESH-iso19139.xml
1375
+ - spec/fixtures/sy319nh8520/metadata/geoMetadata.xml
1376
+ - spec/fixtures/sy319nh8520/temp/GUJARAT-iso19139-fc.xml
1377
+ - spec/fixtures/sy319nh8520/temp/GUJARAT-iso19139.xml
1378
+ - spec/fixtures/td363vx2792/metadata/geoMetadata.xml
1379
+ - spec/fixtures/td363vx2792/temp/HIMACHAL_PRADESH_PT-iso19139-fc.xml
1380
+ - spec/fixtures/td363vx2792/temp/HIMACHAL_PRADESH_PT-iso19139.xml
1381
+ - spec/fixtures/tf374bd2484/metadata/geoMetadata.xml
1382
+ - spec/fixtures/tf374bd2484/temp/DISTRICT1951-iso19139-fc.xml
1383
+ - spec/fixtures/tf374bd2484/temp/DISTRICT1951-iso19139.xml
1384
+ - spec/fixtures/tj797mj7877/metadata/geoMetadata.xml
1385
+ - spec/fixtures/tj797mj7877/temp/LOKSABHA_15-iso19139-fc.xml
1386
+ - spec/fixtures/tj797mj7877/temp/LOKSABHA_15-iso19139.xml
1387
+ - spec/fixtures/tv060wq5179/metadata/geoMetadata.xml
1388
+ - spec/fixtures/tv060wq5179/temp/ASSAM-iso19139-fc.xml
1389
+ - spec/fixtures/tv060wq5179/temp/ASSAM-iso19139.xml
1390
+ - spec/fixtures/tv536bn1915/metadata/geoMetadata.xml
1391
+ - spec/fixtures/tv536bn1915/temp/ARUNACHAL_PRADESH-iso19139-fc.xml
1392
+ - spec/fixtures/tv536bn1915/temp/ARUNACHAL_PRADESH-iso19139.xml
1393
+ - spec/fixtures/tz359cc2977/metadata/geoMetadata.xml
1394
+ - spec/fixtures/tz359cc2977/temp/MANIPUR-iso19139-fc.xml
1395
+ - spec/fixtures/tz359cc2977/temp/MANIPUR-iso19139.xml
1396
+ - spec/fixtures/vb525my6511/metadata/geoMetadata.xml
1397
+ - spec/fixtures/vb525my6511/temp/UTTARAKHAND-iso19139-fc.xml
1398
+ - spec/fixtures/vb525my6511/temp/UTTARAKHAND-iso19139.xml
1399
+ - spec/fixtures/vh802fs4240/metadata/geoMetadata.xml
1400
+ - spec/fixtures/vh802fs4240/temp/PONDICHERRY-iso19139-fc.xml
1401
+ - spec/fixtures/vh802fs4240/temp/PONDICHERRY-iso19139.xml
1402
+ - spec/fixtures/vk120xn2474/metadata/geoMetadata.xml
1403
+ - spec/fixtures/vk120xn2474/temp/PLSS_SEC-iso19139-fc.xml
1404
+ - spec/fixtures/vk120xn2474/temp/PLSS_SEC-iso19139.xml
1405
+ - spec/fixtures/vn439bc7316/metadata/geoMetadata.xml
1406
+ - spec/fixtures/vn439bc7316/temp/KERALA-iso19139-fc.xml
1407
+ - spec/fixtures/vn439bc7316/temp/KERALA-iso19139.xml
1408
+ - spec/fixtures/vq745jk0695/metadata/geoMetadata.xml
1409
+ - spec/fixtures/vq745jk0695/temp/MEGHALAYA-iso19139-fc.xml
1410
+ - spec/fixtures/vq745jk0695/temp/MEGHALAYA-iso19139.xml
1411
+ - spec/fixtures/vr593vj7147/metadata/geoMetadata.xml
1412
+ - spec/fixtures/vr593vj7147/temp/ANDHRA_PRADESH-iso19139-fc.xml
1413
+ - spec/fixtures/vr593vj7147/temp/ANDHRA_PRADESH-iso19139.xml
1414
+ - spec/fixtures/vw911qb5271/metadata/geoMetadata.xml
1415
+ - spec/fixtures/vw911qb5271/temp/DISTRICT2001-iso19139-fc.xml
1416
+ - spec/fixtures/vw911qb5271/temp/DISTRICT2001-iso19139.xml
1417
+ - spec/fixtures/wg680pz0365/metadata/geoMetadata.xml
1418
+ - spec/fixtures/wg680pz0365/temp/ANDHRA_PRADESH-iso19139-fc.xml
1419
+ - spec/fixtures/wg680pz0365/temp/ANDHRA_PRADESH-iso19139.xml
1420
+ - spec/fixtures/wg761xn1926/metadata/geoMetadata.xml
1421
+ - spec/fixtures/wg761xn1926/temp/HARYANA-iso19139-fc.xml
1422
+ - spec/fixtures/wg761xn1926/temp/HARYANA-iso19139.xml
1423
+ - spec/fixtures/wh870qw1934/metadata/geoMetadata.xml
1424
+ - spec/fixtures/wh870qw1934/temp/PUNJAB-iso19139-fc.xml
1425
+ - spec/fixtures/wh870qw1934/temp/PUNJAB-iso19139.xml
1426
+ - spec/fixtures/wk775mm4673/metadata/geoMetadata.xml
1427
+ - spec/fixtures/wk775mm4673/temp/MAHARASHTRA-iso19139-fc.xml
1428
+ - spec/fixtures/wk775mm4673/temp/MAHARASHTRA-iso19139.xml
1429
+ - spec/fixtures/ws171yz2165/metadata/geoMetadata.xml
1430
+ - spec/fixtures/ws171yz2165/temp/ARUNACHAL_PRADESH_PT-iso19139-fc.xml
1431
+ - spec/fixtures/ws171yz2165/temp/ARUNACHAL_PRADESH_PT-iso19139.xml
1432
+ - spec/fixtures/wt473hz7153/metadata/geoMetadata.xml
1433
+ - spec/fixtures/wt473hz7153/temp/CHANDIGARH_PT-iso19139-fc.xml
1434
+ - spec/fixtures/wt473hz7153/temp/CHANDIGARH_PT-iso19139.xml
1435
+ - spec/fixtures/ww217dj0457/metadata/geoMetadata.xml
1436
+ - spec/fixtures/ww217dj0457/temp/CO2_PIPE-iso19139-fc.xml
1437
+ - spec/fixtures/ww217dj0457/temp/CO2_PIPE-iso19139.xml
1438
+ - spec/fixtures/wy875pk9849/metadata/geoMetadata.xml
1439
+ - spec/fixtures/wy875pk9849/temp/STATE1961-iso19139-fc.xml
1440
+ - spec/fixtures/wy875pk9849/temp/STATE1961-iso19139.xml
1441
+ - spec/fixtures/xb018tk2042/metadata/geoMetadata.xml
1442
+ - spec/fixtures/xb018tk2042/temp/STATE1981-iso19139-fc.xml
1443
+ - spec/fixtures/xb018tk2042/temp/STATE1981-iso19139.xml
1444
+ - spec/fixtures/xg539vw8586/metadata/geoMetadata.xml
1445
+ - spec/fixtures/xg539vw8586/temp/ORISSA-iso19139-fc.xml
1446
+ - spec/fixtures/xg539vw8586/temp/ORISSA-iso19139.xml
1447
+ - spec/fixtures/xv475kp4644/metadata/geoMetadata.xml
1448
+ - spec/fixtures/xv475kp4644/temp/ASSAM_PT-iso19139-fc.xml
1449
+ - spec/fixtures/xv475kp4644/temp/ASSAM_PT-iso19139.xml
1450
+ - spec/fixtures/xy096gc2959/metadata/geoMetadata.xml
1451
+ - spec/fixtures/xy096gc2959/temp/GOA-iso19139-fc.xml
1452
+ - spec/fixtures/xy096gc2959/temp/GOA-iso19139.xml
1453
+ - spec/fixtures/xz518gz3362/metadata/geoMetadata.xml
1454
+ - spec/fixtures/xz518gz3362/temp/UTTARAKHAND-iso19139-fc.xml
1455
+ - spec/fixtures/xz518gz3362/temp/UTTARAKHAND-iso19139.xml
1456
+ - spec/fixtures/yh986wy4737/metadata/geoMetadata.xml
1457
+ - spec/fixtures/yh986wy4737/temp/NAGALAND-iso19139-fc.xml
1458
+ - spec/fixtures/yh986wy4737/temp/NAGALAND-iso19139.xml
1459
+ - spec/fixtures/yn187fq4474/metadata/geoMetadata.xml
1460
+ - spec/fixtures/yn187fq4474/temp/KARNATAKA-iso19139-fc.xml
1461
+ - spec/fixtures/yn187fq4474/temp/KARNATAKA-iso19139.xml
1462
+ - spec/fixtures/yn236mw3250/metadata/geoMetadata.xml
1463
+ - spec/fixtures/yn236mw3250/temp/TAMILNADU-iso19139-fc.xml
1464
+ - spec/fixtures/yn236mw3250/temp/TAMILNADU-iso19139.xml
1465
+ - spec/fixtures/yz596nz0112/metadata/geoMetadata.xml
1466
+ - spec/fixtures/yz596nz0112/temp/WEST_BENGAL-iso19139-fc.xml
1467
+ - spec/fixtures/yz596nz0112/temp/WEST_BENGAL-iso19139.xml
1468
+ - spec/fixtures/zk596gy7380/metadata/geoMetadata.xml
1469
+ - spec/fixtures/zk596gy7380/temp/DISTRICT1971-iso19139-fc.xml
1470
+ - spec/fixtures/zk596gy7380/temp/DISTRICT1971-iso19139.xml
1471
+ - spec/fixtures/zn452hh7431/metadata/geoMetadata.xml
1472
+ - spec/fixtures/zn452hh7431/temp/RAJASTHAN-iso19139-fc.xml
1473
+ - spec/fixtures/zn452hh7431/temp/RAJASTHAN-iso19139.xml
1474
+ - spec/fixtures/zt093fw6519/metadata/geoMetadata.xml
1475
+ - spec/fixtures/zt093fw6519/temp/MIZORAM-iso19139-fc.xml
1476
+ - spec/fixtures/zt093fw6519/temp/MIZORAM-iso19139.xml
1477
+ - spec/fixtures/zv925hd6723/metadata/geoMetadata.xml
1478
+ - spec/fixtures/zv925hd6723/temp/OGWELLS-iso19139-fc.xml
1479
+ - spec/fixtures/zv925hd6723/temp/OGWELLS-iso19139.xml
1480
+ - spec/fixtures/zy658cr1728/metadata/geoMetadata.xml
1481
+ - spec/fixtures/zy658cr1728/temp/ANDAMAAN_NICOBAR_PT-iso19139-fc.xml
1482
+ - spec/fixtures/zy658cr1728/temp/ANDAMAAN_NICOBAR_PT-iso19139.xml
1483
+ - spec/fixtures/zz943vx1492/metadata/geoMetadata.xml
1484
+ - spec/fixtures/zz943vx1492/temp/BASINS-iso19139-fc.xml
1485
+ - spec/fixtures/zz943vx1492/temp/BASINS-iso19139.xml
1486
+ - spec/integration/solr_spec_notready.rb
1487
+ - spec/test_net_ssh_krb.rb
1488
+ - spec/unit/gazetteer_spec.rb
1489
+ - spec/unit/transform_spec.rb
1490
+ - spec/unit/utils_spec.rb
1491
+ has_rdoc: true