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,3865 @@
1
+ <?xml version="1.0"?>
2
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
3
+ <rdf:Description rdf:about="http://purl-test.stanford.edu/dv609zt4699">
4
+ <MD_Metadata xmlns="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5
+ <fileIdentifier>
6
+ <gco:CharacterString>B672C3D5-24AE-4243-AD52-5DE96C38CCE0</gco:CharacterString>
7
+ </fileIdentifier>
8
+ <language>
9
+ <LanguageCode codeList="http://www.loc.gov/standards/iso639-2/php/code_list.php" codeListValue="eng" codeSpace="ISO639-2">eng</LanguageCode>
10
+ </language>
11
+ <characterSet>
12
+ <MD_CharacterSetCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</MD_CharacterSetCode>
13
+ </characterSet>
14
+ <hierarchyLevel>
15
+ <MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</MD_ScopeCode>
16
+ </hierarchyLevel>
17
+ <hierarchyLevelName>
18
+ <gco:CharacterString>dataset</gco:CharacterString>
19
+ </hierarchyLevelName>
20
+ <contact>
21
+ <CI_ResponsibleParty>
22
+ <organisationName>
23
+ <gco:CharacterString>Stanford Geospatial Center</gco:CharacterString>
24
+ </organisationName>
25
+ <positionName>
26
+ <gco:CharacterString>Metadata Analyst</gco:CharacterString>
27
+ </positionName>
28
+ <contactInfo>
29
+ <CI_Contact>
30
+ <phone>
31
+ <CI_Telephone>
32
+ <voice>
33
+ <gco:CharacterString>650-723-2746</gco:CharacterString>
34
+ </voice>
35
+ </CI_Telephone>
36
+ </phone>
37
+ <address>
38
+ <CI_Address>
39
+ <deliveryPoint>
40
+ <gco:CharacterString>Branner Earth Sciences Library</gco:CharacterString>
41
+ </deliveryPoint>
42
+ <deliveryPoint>
43
+ <gco:CharacterString>Mitchell Bldg. 2nd floor</gco:CharacterString>
44
+ </deliveryPoint>
45
+ <deliveryPoint>
46
+ <gco:CharacterString>397 Panama Mall</gco:CharacterString>
47
+ </deliveryPoint>
48
+ <city>
49
+ <gco:CharacterString>Stanford</gco:CharacterString>
50
+ </city>
51
+ <administrativeArea>
52
+ <gco:CharacterString>California</gco:CharacterString>
53
+ </administrativeArea>
54
+ <postalCode>
55
+ <gco:CharacterString>94305</gco:CharacterString>
56
+ </postalCode>
57
+ <country>
58
+ <gco:CharacterString>US</gco:CharacterString>
59
+ </country>
60
+ <electronicMailAddress>
61
+ <gco:CharacterString>brannerlibrary@stanford.edu</gco:CharacterString>
62
+ </electronicMailAddress>
63
+ </CI_Address>
64
+ </address>
65
+ </CI_Contact>
66
+ </contactInfo>
67
+ <role>
68
+ <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact" codeSpace="ISOTC211/19115">pointOfContact</CI_RoleCode>
69
+ </role>
70
+ </CI_ResponsibleParty>
71
+ </contact>
72
+ <dateStamp>
73
+ <gco:Date>2013-09-17</gco:Date>
74
+ </dateStamp>
75
+ <metadataStandardName>
76
+ <gco:CharacterString>ISO 19139 Geographic Information - Metadata - Implementation Specification</gco:CharacterString>
77
+ </metadataStandardName>
78
+ <metadataStandardVersion>
79
+ <gco:CharacterString>2007</gco:CharacterString>
80
+ </metadataStandardVersion>
81
+ <spatialRepresentationInfo>
82
+ <MD_VectorSpatialRepresentation>
83
+ <topologyLevel>
84
+ <MD_TopologyLevelCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly" codeSpace="ISOTC211/19115">geometryOnly</MD_TopologyLevelCode>
85
+ </topologyLevel>
86
+ <geometricObjects>
87
+ <MD_GeometricObjects>
88
+ <geometricObjectType>
89
+ <MD_GeometricObjectTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="composite" codeSpace="ISOTC211/19115">composite</MD_GeometricObjectTypeCode>
90
+ </geometricObjectType>
91
+ <geometricObjectCount>
92
+ <gco:Integer>22528</gco:Integer>
93
+ </geometricObjectCount>
94
+ </MD_GeometricObjects>
95
+ </geometricObjects>
96
+ </MD_VectorSpatialRepresentation>
97
+ </spatialRepresentationInfo>
98
+ <referenceSystemInfo>
99
+ <MD_ReferenceSystem>
100
+ <referenceSystemIdentifier>
101
+ <RS_Identifier>
102
+ <code>
103
+ <gco:CharacterString>4326</gco:CharacterString>
104
+ </code>
105
+ <codeSpace>
106
+ <gco:CharacterString>EPSG</gco:CharacterString>
107
+ </codeSpace>
108
+ <version>
109
+ <gco:CharacterString>7.11.2</gco:CharacterString>
110
+ </version>
111
+ </RS_Identifier>
112
+ </referenceSystemIdentifier>
113
+ </MD_ReferenceSystem>
114
+ </referenceSystemInfo>
115
+ <identificationInfo>
116
+ <MD_DataIdentification>
117
+ <citation>
118
+ <CI_Citation>
119
+ <title>
120
+ <gco:CharacterString>Digital Map of Village Boundaries of Assam, India, 2001</gco:CharacterString>
121
+ </title>
122
+ <date>
123
+ <CI_Date>
124
+ <date>
125
+ <gco:Date>2013-03-13</gco:Date>
126
+ </date>
127
+ <dateType>
128
+ <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
129
+ </dateType>
130
+ </CI_Date>
131
+ </date>
132
+ <citedResponsibleParty>
133
+ <CI_ResponsibleParty>
134
+ <organisationName>
135
+ <gco:CharacterString>ML InfoMap (Firm)</gco:CharacterString>
136
+ </organisationName>
137
+ <role>
138
+ <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
139
+ </role>
140
+ </CI_ResponsibleParty>
141
+ </citedResponsibleParty>
142
+ <citedResponsibleParty>
143
+ <CI_ResponsibleParty>
144
+ <organisationName>
145
+ <gco:CharacterString>ML InfoMap (Firm)</gco:CharacterString>
146
+ </organisationName>
147
+ <contactInfo>
148
+ <CI_Contact>
149
+ <phone>
150
+ <CI_Telephone>
151
+ <voice>
152
+ <gco:CharacterString>91 11 41688592</gco:CharacterString>
153
+ </voice>
154
+ </CI_Telephone>
155
+ </phone>
156
+ <address>
157
+ <CI_Address>
158
+ <deliveryPoint>
159
+ <gco:CharacterString>124-A Katwaria Sarai</gco:CharacterString>
160
+ </deliveryPoint>
161
+ <city>
162
+ <gco:CharacterString>New Delhi</gco:CharacterString>
163
+ </city>
164
+ <postalCode>
165
+ <gco:CharacterString>110 016</gco:CharacterString>
166
+ </postalCode>
167
+ <country>
168
+ <gco:CharacterString>IN</gco:CharacterString>
169
+ </country>
170
+ <electronicMailAddress>
171
+ <gco:CharacterString>manosi@mlinfomap.com</gco:CharacterString>
172
+ </electronicMailAddress>
173
+ </CI_Address>
174
+ </address>
175
+ </CI_Contact>
176
+ </contactInfo>
177
+ <role>
178
+ <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</CI_RoleCode>
179
+ </role>
180
+ </CI_ResponsibleParty>
181
+ </citedResponsibleParty>
182
+ <presentationForm>
183
+ <CI_PresentationFormCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_PresentationFormCode" codeListValue="mapDigital" codeSpace="ISOTC211/19115">mapDigital</CI_PresentationFormCode>
184
+ </presentationForm>
185
+ </CI_Citation>
186
+ </citation>
187
+ <abstract>
188
+ <gco:CharacterString>Village boundaries of Assam linked to Census 2001. Map includes data for 4053 villages, 12 towns, 23 districts and 1 state. This layer is part of the Village Map of India which includes socio-demographic and economic Census data for 2001 at the Village level. </gco:CharacterString>
189
+ </abstract>
190
+ <purpose>
191
+ <gco:CharacterString>Village level demographic analysis.</gco:CharacterString>
192
+ </purpose>
193
+ <credit>
194
+ <gco:CharacterString>ML Infomap (2013) Digital Map of Village Boundaries of Assam, India, 2001. ML Infomap.</gco:CharacterString>
195
+ </credit>
196
+ <status>
197
+ <MD_ProgressCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed" codeSpace="ISOTC211/19115">completed</MD_ProgressCode>
198
+ </status>
199
+ <pointOfContact>
200
+ <CI_ResponsibleParty>
201
+ <individualName>
202
+ <gco:CharacterString>Lahiri, Manosi</gco:CharacterString>
203
+ </individualName>
204
+ <organisationName>
205
+ <gco:CharacterString>ML Infomap Pvt. Ltd.</gco:CharacterString>
206
+ </organisationName>
207
+ <contactInfo>
208
+ <CI_Contact>
209
+ <phone>
210
+ <CI_Telephone>
211
+ <voice>
212
+ <gco:CharacterString>91 11 41688592</gco:CharacterString>
213
+ </voice>
214
+ </CI_Telephone>
215
+ </phone>
216
+ <address>
217
+ <CI_Address>
218
+ <deliveryPoint>
219
+ <gco:CharacterString>124-A,Katwaria Sarai</gco:CharacterString>
220
+ </deliveryPoint>
221
+ <city>
222
+ <gco:CharacterString>New Delhi</gco:CharacterString>
223
+ </city>
224
+ <postalCode>
225
+ <gco:CharacterString>110016</gco:CharacterString>
226
+ </postalCode>
227
+ <country>
228
+ <gco:CharacterString>IN</gco:CharacterString>
229
+ </country>
230
+ <electronicMailAddress>
231
+ <gco:CharacterString>manosi@mlinfomap.com</gco:CharacterString>
232
+ </electronicMailAddress>
233
+ </CI_Address>
234
+ </address>
235
+ </CI_Contact>
236
+ </contactInfo>
237
+ <role>
238
+ <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact" codeSpace="ISOTC211/19115">pointOfContact</CI_RoleCode>
239
+ </role>
240
+ </CI_ResponsibleParty>
241
+ </pointOfContact>
242
+ <resourceMaintenance>
243
+ <MD_MaintenanceInformation>
244
+ <maintenanceAndUpdateFrequency>
245
+ <MD_MaintenanceFrequencyCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded" codeSpace="ISOTC211/19115">asNeeded</MD_MaintenanceFrequencyCode>
246
+ </maintenanceAndUpdateFrequency>
247
+ </MD_MaintenanceInformation>
248
+ </resourceMaintenance>
249
+ <descriptiveKeywords>
250
+ <MD_Keywords>
251
+ <keyword>
252
+ <gco:CharacterString>Assam (geonames.org/1278253)</gco:CharacterString>
253
+ </keyword>
254
+ <keyword>
255
+ <gco:CharacterString>Tinsukia (geonames.org/7627085)</gco:CharacterString>
256
+ </keyword>
257
+ <keyword>
258
+ <gco:CharacterString>Dibrugarh (geonames.org/1272649)</gco:CharacterString>
259
+ </keyword>
260
+ <keyword>
261
+ <gco:CharacterString>North Lakhimpur (geonames.org/1261181)</gco:CharacterString>
262
+ </keyword>
263
+ <keyword>
264
+ <gco:CharacterString>Sibsagar (geonames.org/1256389)</gco:CharacterString>
265
+ </keyword>
266
+ <keyword>
267
+ <gco:CharacterString>Jorhat (geonames.org/762708)</gco:CharacterString>
268
+ </keyword>
269
+ <keyword>
270
+ <gco:CharacterString>Tezpur (geonames.org/125471)</gco:CharacterString>
271
+ </keyword>
272
+ <type>
273
+ <MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</MD_KeywordTypeCode>
274
+ </type>
275
+ <thesaurusName>
276
+ <CI_Citation>
277
+ <title>
278
+ <gco:CharacterString>geonames</gco:CharacterString>
279
+ </title>
280
+ <date>
281
+ <CI_Date>
282
+ <date>
283
+ <gco:Date>2012-10-29</gco:Date>
284
+ </date>
285
+ <dateType>
286
+ <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision" codeSpace="ISOTC211/19115">revision</CI_DateTypeCode>
287
+ </dateType>
288
+ </CI_Date>
289
+ </date>
290
+ <edition>
291
+ <gco:CharacterString>3.1</gco:CharacterString>
292
+ </edition>
293
+ <identifier>
294
+ <MD_Identifier>
295
+ <code>
296
+ <gco:CharacterString>http://www.geonames.org</gco:CharacterString>
297
+ </code>
298
+ </MD_Identifier>
299
+ </identifier>
300
+ </CI_Citation>
301
+ </thesaurusName>
302
+ </MD_Keywords>
303
+ </descriptiveKeywords>
304
+ <descriptiveKeywords>
305
+ <MD_Keywords>
306
+ <keyword>
307
+ <gco:CharacterString>Margherita</gco:CharacterString>
308
+ </keyword>
309
+ <keyword>
310
+ <gco:CharacterString>Kachugaon</gco:CharacterString>
311
+ </keyword>
312
+ <keyword>
313
+ <gco:CharacterString>Bashbari</gco:CharacterString>
314
+ </keyword>
315
+ <type>
316
+ <MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</MD_KeywordTypeCode>
317
+ </type>
318
+ </MD_Keywords>
319
+ </descriptiveKeywords>
320
+ <descriptiveKeywords>
321
+ <MD_Keywords>
322
+ <keyword>
323
+ <gco:CharacterString>2001</gco:CharacterString>
324
+ </keyword>
325
+ <type>
326
+ <MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="temporal" codeSpace="ISOTC211/19115">temporal</MD_KeywordTypeCode>
327
+ </type>
328
+ </MD_Keywords>
329
+ </descriptiveKeywords>
330
+ <descriptiveKeywords>
331
+ <MD_Keywords>
332
+ <keyword>
333
+ <gco:CharacterString>Sex ratio</gco:CharacterString>
334
+ </keyword>
335
+ <keyword>
336
+ <gco:CharacterString>Literacy</gco:CharacterString>
337
+ </keyword>
338
+ <keyword>
339
+ <gco:CharacterString>Statistics</gco:CharacterString>
340
+ </keyword>
341
+ <keyword>
342
+ <gco:CharacterString>Population</gco:CharacterString>
343
+ </keyword>
344
+ <keyword>
345
+ <gco:CharacterString>Administrative and political divisions</gco:CharacterString>
346
+ </keyword>
347
+ <type>
348
+ <MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</MD_KeywordTypeCode>
349
+ </type>
350
+ <thesaurusName>
351
+ <CI_Citation>
352
+ <title>
353
+ <gco:CharacterString>lcsh</gco:CharacterString>
354
+ </title>
355
+ <date>
356
+ <CI_Date>
357
+ <date>
358
+ <gco:Date>2011-04-26</gco:Date>
359
+ </date>
360
+ <dateType>
361
+ <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision" codeSpace="ISOTC211/19115">revision</CI_DateTypeCode>
362
+ </dateType>
363
+ </CI_Date>
364
+ </date>
365
+ <identifier>
366
+ <MD_Identifier>
367
+ <code>
368
+ <gco:CharacterString>http://id.loc.gov/authorities/subjects.html</gco:CharacterString>
369
+ </code>
370
+ </MD_Identifier>
371
+ </identifier>
372
+ </CI_Citation>
373
+ </thesaurusName>
374
+ </MD_Keywords>
375
+ </descriptiveKeywords>
376
+ <descriptiveKeywords>
377
+ <MD_Keywords>
378
+ <keyword>
379
+ <gco:CharacterString>Downloadable Data</gco:CharacterString>
380
+ </keyword>
381
+ <thesaurusName uuidref="723f6998-058e-11dc-8314-0800200c9a66"/>
382
+ </MD_Keywords>
383
+ </descriptiveKeywords>
384
+ <resourceConstraints>
385
+ <MD_LegalConstraints>
386
+ <accessConstraints>
387
+ <MD_RestrictionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</MD_RestrictionCode>
388
+ </accessConstraints>
389
+ <useConstraints>
390
+ <MD_RestrictionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</MD_RestrictionCode>
391
+ </useConstraints>
392
+ <otherConstraints>
393
+ <gco:CharacterString>Data may not be distributed, copied, or made available to users outside of the Stanford University Network. Data may not used for commercial purposes. Users should acknowledge ML Infomap in any derivative works. Please contact brannerlibrary@stanford.edu for more information.
394
+ </gco:CharacterString>
395
+ </otherConstraints>
396
+ </MD_LegalConstraints>
397
+ </resourceConstraints>
398
+ <aggregationInfo>
399
+ <MD_AggregateInformation>
400
+ <aggregateDataSetName>
401
+ <CI_Citation>
402
+ <title>
403
+ <gco:CharacterString>Village Map of India</gco:CharacterString>
404
+ </title>
405
+ <alternateTitle>
406
+ <gco:CharacterString>VillageMap of India</gco:CharacterString>
407
+ </alternateTitle>
408
+ <date>
409
+ <CI_Date>
410
+ <date>
411
+ <gco:Date>2013-03-13</gco:Date>
412
+ </date>
413
+ <dateType>
414
+ <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
415
+ </dateType>
416
+ </CI_Date>
417
+ </date>
418
+ <citedResponsibleParty>
419
+ <CI_ResponsibleParty>
420
+ <organisationName>
421
+ <gco:CharacterString>ML InfoMap (Firm)</gco:CharacterString>
422
+ </organisationName>
423
+ <contactInfo>
424
+ <CI_Contact>
425
+ <phone>
426
+ <CI_Telephone>
427
+ <voice>
428
+ <gco:CharacterString>91 11 41688592</gco:CharacterString>
429
+ </voice>
430
+ </CI_Telephone>
431
+ </phone>
432
+ <address>
433
+ <CI_Address>
434
+ <deliveryPoint>
435
+ <gco:CharacterString>124-A Katwaria Sarai</gco:CharacterString>
436
+ </deliveryPoint>
437
+ <city>
438
+ <gco:CharacterString>New Delhi</gco:CharacterString>
439
+ </city>
440
+ <postalCode>
441
+ <gco:CharacterString>110 016</gco:CharacterString>
442
+ </postalCode>
443
+ <country>
444
+ <gco:CharacterString>IN</gco:CharacterString>
445
+ </country>
446
+ <electronicMailAddress>
447
+ <gco:CharacterString>manosi@mlinfomap.com</gco:CharacterString>
448
+ </electronicMailAddress>
449
+ </CI_Address>
450
+ </address>
451
+ </CI_Contact>
452
+ </contactInfo>
453
+ <role>
454
+ <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
455
+ </role>
456
+ </CI_ResponsibleParty>
457
+ </citedResponsibleParty>
458
+ <citedResponsibleParty>
459
+ <CI_ResponsibleParty>
460
+ <organisationName>
461
+ <gco:CharacterString>ML InfoMap (Firm)</gco:CharacterString>
462
+ </organisationName>
463
+ <contactInfo>
464
+ <CI_Contact>
465
+ <phone>
466
+ <CI_Telephone>
467
+ <voice>
468
+ <gco:CharacterString>91 11 41688592</gco:CharacterString>
469
+ </voice>
470
+ </CI_Telephone>
471
+ </phone>
472
+ <address>
473
+ <CI_Address>
474
+ <deliveryPoint>
475
+ <gco:CharacterString>124-A Katwaria Sarai</gco:CharacterString>
476
+ </deliveryPoint>
477
+ <city>
478
+ <gco:CharacterString>New Delhi</gco:CharacterString>
479
+ </city>
480
+ <postalCode>
481
+ <gco:CharacterString>110 016</gco:CharacterString>
482
+ </postalCode>
483
+ <country>
484
+ <gco:CharacterString>IN</gco:CharacterString>
485
+ </country>
486
+ <electronicMailAddress>
487
+ <gco:CharacterString>manosi@mlinfomap.com</gco:CharacterString>
488
+ </electronicMailAddress>
489
+ </CI_Address>
490
+ </address>
491
+ </CI_Contact>
492
+ </contactInfo>
493
+ <role>
494
+ <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</CI_RoleCode>
495
+ </role>
496
+ </CI_ResponsibleParty>
497
+ </citedResponsibleParty>
498
+ </CI_Citation>
499
+ </aggregateDataSetName>
500
+ <associationType>
501
+ <DS_AssociationTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#DS_AssociationTypeCode" codeListValue="largerWorkCitation" codeSpace="ISOTC211/19115">largerWorkCitation</DS_AssociationTypeCode>
502
+ </associationType>
503
+ </MD_AggregateInformation>
504
+ </aggregationInfo>
505
+ <spatialRepresentationType>
506
+ <MD_SpatialRepresentationTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector" codeSpace="ISOTC211/19115">vector</MD_SpatialRepresentationTypeCode>
507
+ </spatialRepresentationType>
508
+ <spatialResolution>
509
+ <MD_Resolution>
510
+ <equivalentScale>
511
+ <MD_RepresentativeFraction>
512
+ <denominator>
513
+ <gco:Integer>200000</gco:Integer>
514
+ </denominator>
515
+ </MD_RepresentativeFraction>
516
+ </equivalentScale>
517
+ </MD_Resolution>
518
+ </spatialResolution>
519
+ <language>
520
+ <LanguageCode codeList="http://www.loc.gov/standards/iso639-2/php/code_list.php" codeListValue="eng" codeSpace="ISO639-2">eng</LanguageCode>
521
+ </language>
522
+ <characterSet>
523
+ <MD_CharacterSetCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</MD_CharacterSetCode>
524
+ </characterSet>
525
+ <topicCategory>
526
+ <MD_TopicCategoryCode>boundaries</MD_TopicCategoryCode>
527
+ </topicCategory>
528
+ <topicCategory>
529
+ <MD_TopicCategoryCode>society</MD_TopicCategoryCode>
530
+ </topicCategory>
531
+ <environmentDescription>
532
+ <gco:CharacterString>Microsoft Windows 7 Version 6.1 (Build 7601) Service Pack 1; Esri ArcGIS 10.1.1.3143</gco:CharacterString>
533
+ </environmentDescription>
534
+ <extent>
535
+ <EX_Extent>
536
+ <description>
537
+ <gco:CharacterString>Primary Census Abstract 2001</gco:CharacterString>
538
+ </description>
539
+ <temporalElement>
540
+ <EX_TemporalExtent>
541
+ <extent>
542
+ <gml:TimePeriod gml:id="idm5701536">
543
+ <gml:beginPosition>2001-01-01T00:00:00</gml:beginPosition>
544
+ <gml:endPosition>2001-12-31T00:00:00</gml:endPosition>
545
+ </gml:TimePeriod>
546
+ </extent>
547
+ </EX_TemporalExtent>
548
+ </temporalElement>
549
+ </EX_Extent>
550
+ </extent>
551
+ <extent>
552
+ <EX_Extent>
553
+ <geographicElement>
554
+ <EX_GeographicBoundingBox>
555
+ <extentTypeCode>
556
+ <gco:Boolean>true</gco:Boolean>
557
+ </extentTypeCode>
558
+ <westBoundLongitude>
559
+ <gco:Decimal>89.69511</gco:Decimal>
560
+ </westBoundLongitude>
561
+ <eastBoundLongitude>
562
+ <gco:Decimal>96.01561</gco:Decimal>
563
+ </eastBoundLongitude>
564
+ <southBoundLatitude>
565
+ <gco:Decimal>24.12979</gco:Decimal>
566
+ </southBoundLatitude>
567
+ <northBoundLatitude>
568
+ <gco:Decimal>27.97219</gco:Decimal>
569
+ </northBoundLatitude>
570
+ </EX_GeographicBoundingBox>
571
+ </geographicElement>
572
+ </EX_Extent>
573
+ </extent>
574
+ <supplementalInformation>
575
+ <gco:CharacterString>Census demographic &amp; socio-economic data included</gco:CharacterString>
576
+ </supplementalInformation>
577
+ </MD_DataIdentification>
578
+ </identificationInfo>
579
+ <contentInfo>
580
+ <MD_FeatureCatalogueDescription>
581
+ <complianceCode>
582
+ <gco:Boolean>false</gco:Boolean>
583
+ </complianceCode>
584
+ <language>
585
+ <LanguageCode codeList="http://www.loc.gov/standards/iso639-2/php/code_list.php" codeListValue="eng" codeSpace="ISO639-2">eng</LanguageCode>
586
+ </language>
587
+ <includedWithDataset>
588
+ <gco:Boolean>true</gco:Boolean>
589
+ </includedWithDataset>
590
+ <featureCatalogueCitation>
591
+ <CI_Citation>
592
+ <title>
593
+ <gco:CharacterString>Feature Catalog for Digital Map of Village Boundaries of Assam, India, 2001</gco:CharacterString>
594
+ </title>
595
+ <date>
596
+ <CI_Date>
597
+ <date>
598
+ <gco:Date>2013-03-13</gco:Date>
599
+ </date>
600
+ <dateType>
601
+ <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
602
+ </dateType>
603
+ </CI_Date>
604
+ </date>
605
+ <identifier>
606
+ <MD_Identifier>
607
+ <code>
608
+ <gco:CharacterString>0fd6b47e-ebca-4378-8d86-b2a3a94d9d92</gco:CharacterString>
609
+ </code>
610
+ </MD_Identifier>
611
+ </identifier>
612
+ <citedResponsibleParty>
613
+ <CI_ResponsibleParty>
614
+ <organisationName>
615
+ <gco:CharacterString>ML InfoMap (Firm)</gco:CharacterString>
616
+ </organisationName>
617
+ <role>
618
+ <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
619
+ </role>
620
+ </CI_ResponsibleParty>
621
+ </citedResponsibleParty>
622
+ </CI_Citation>
623
+ </featureCatalogueCitation>
624
+ </MD_FeatureCatalogueDescription>
625
+ </contentInfo>
626
+ <distributionInfo>
627
+ <MD_Distribution>
628
+ <distributionFormat>
629
+ <MD_Format>
630
+ <name>
631
+ <gco:CharacterString>Shapefile</gco:CharacterString>
632
+ </name>
633
+ <version gco:nilReason="missing"/>
634
+ </MD_Format>
635
+ </distributionFormat>
636
+ <distributor>
637
+ <MD_Distributor>
638
+ <distributorContact>
639
+ <CI_ResponsibleParty>
640
+ <organisationName>
641
+ <gco:CharacterString>Stanford Geospatial Center</gco:CharacterString>
642
+ </organisationName>
643
+ <contactInfo>
644
+ <CI_Contact>
645
+ <phone>
646
+ <CI_Telephone>
647
+ <voice>
648
+ <gco:CharacterString>650-723-2746</gco:CharacterString>
649
+ </voice>
650
+ </CI_Telephone>
651
+ </phone>
652
+ <address>
653
+ <CI_Address>
654
+ <deliveryPoint>
655
+ <gco:CharacterString>Branner Earth Sciences Library</gco:CharacterString>
656
+ </deliveryPoint>
657
+ <deliveryPoint>
658
+ <gco:CharacterString>Mitchell Bldg. 2nd floor</gco:CharacterString>
659
+ </deliveryPoint>
660
+ <deliveryPoint>
661
+ <gco:CharacterString>397 Panama Mall</gco:CharacterString>
662
+ </deliveryPoint>
663
+ <city>
664
+ <gco:CharacterString>Stanford</gco:CharacterString>
665
+ </city>
666
+ <administrativeArea>
667
+ <gco:CharacterString>California</gco:CharacterString>
668
+ </administrativeArea>
669
+ <postalCode>
670
+ <gco:CharacterString>94305</gco:CharacterString>
671
+ </postalCode>
672
+ <country>
673
+ <gco:CharacterString>US</gco:CharacterString>
674
+ </country>
675
+ <electronicMailAddress>
676
+ <gco:CharacterString>brannerlibrary@stanford.edu</gco:CharacterString>
677
+ </electronicMailAddress>
678
+ </CI_Address>
679
+ </address>
680
+ </CI_Contact>
681
+ </contactInfo>
682
+ <role>
683
+ <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</CI_RoleCode>
684
+ </role>
685
+ </CI_ResponsibleParty>
686
+ </distributorContact>
687
+ </MD_Distributor>
688
+ </distributor>
689
+ <transferOptions>
690
+ <MD_DigitalTransferOptions>
691
+ <unitsOfDistribution>
692
+ <gco:CharacterString>MB</gco:CharacterString>
693
+ </unitsOfDistribution>
694
+ <transferSize>
695
+ <gco:Real>10.742</gco:Real>
696
+ </transferSize>
697
+ </MD_DigitalTransferOptions>
698
+ </transferOptions>
699
+ </MD_Distribution>
700
+ </distributionInfo>
701
+ <dataQualityInfo>
702
+ <DQ_DataQuality>
703
+ <scope>
704
+ <DQ_Scope>
705
+ <level>
706
+ <MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</MD_ScopeCode>
707
+ </level>
708
+ </DQ_Scope>
709
+ </scope>
710
+ <report>
711
+ <DQ_ConceptualConsistency>
712
+ <evaluationMethodDescription>
713
+ <gco:CharacterString>Coastal boundary aligned with imagery, no gaps in polygon, no topological errors, aggregate and % figures verified</gco:CharacterString>
714
+ </evaluationMethodDescription>
715
+ <result gco:nilReason="missing"/>
716
+ </DQ_ConceptualConsistency>
717
+ </report>
718
+ <report>
719
+ <DQ_CompletenessOmission>
720
+ <evaluationMethodDescription>
721
+ <gco:CharacterString>Saperate village available for Assam</gco:CharacterString>
722
+ </evaluationMethodDescription>
723
+ <result gco:nilReason="missing"/>
724
+ </DQ_CompletenessOmission>
725
+ </report>
726
+ <report>
727
+ <DQ_AbsoluteExternalPositionalAccuracy>
728
+ <evaluationMethodDescription>
729
+ <gco:CharacterString>30-50 metres</gco:CharacterString>
730
+ </evaluationMethodDescription>
731
+ <result gco:nilReason="missing"/>
732
+ </DQ_AbsoluteExternalPositionalAccuracy>
733
+ </report>
734
+ <lineage>
735
+ <LI_Lineage>
736
+ <processStep>
737
+ <LI_ProcessStep>
738
+ <description>
739
+ <gco:CharacterString>Census operations across India</gco:CharacterString>
740
+ </description>
741
+ <dateTime>
742
+ <gco:DateTime>2001-01-01T00:00:00</gco:DateTime>
743
+ </dateTime>
744
+ </LI_ProcessStep>
745
+ </processStep>
746
+ <source>
747
+ <LI_Source>
748
+ <description>
749
+ <gco:CharacterString>Village demographic profile of India 2001</gco:CharacterString>
750
+ </description>
751
+ <sourceCitation>
752
+ <CI_Citation>
753
+ <title>
754
+ <gco:CharacterString>Village demographic profile of India 2001</gco:CharacterString>
755
+ </title>
756
+ <date>
757
+ <CI_Date>
758
+ <date>
759
+ <gco:Date>2001-01-01</gco:Date>
760
+ </date>
761
+ <dateType>
762
+ <CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</CI_DateTypeCode>
763
+ </dateType>
764
+ </CI_Date>
765
+ </date>
766
+ <citedResponsibleParty>
767
+ <CI_ResponsibleParty>
768
+ <organisationName>
769
+ <gco:CharacterString>Registrar General and Census Commissioner of India</gco:CharacterString>
770
+ </organisationName>
771
+ <role>
772
+ <CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</CI_RoleCode>
773
+ </role>
774
+ </CI_ResponsibleParty>
775
+ </citedResponsibleParty>
776
+ <presentationForm>
777
+ <CI_PresentationFormCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_PresentationFormCode" codeListValue="mapDigital" codeSpace="ISOTC211/19115">mapDigital</CI_PresentationFormCode>
778
+ </presentationForm>
779
+ </CI_Citation>
780
+ </sourceCitation>
781
+ </LI_Source>
782
+ </source>
783
+ </LI_Lineage>
784
+ </lineage>
785
+ </DQ_DataQuality>
786
+ </dataQualityInfo>
787
+ </MD_Metadata>
788
+ </rdf:Description>
789
+ <rdf:Description rdf:about="http://purl-test.stanford.edu/dv609zt4699">
790
+ <gfc:FC_FeatureCatalogue xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gfc="http://www.isotc211.org/2005/gfc" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.isotc211.org/2005/gfc" xsi:schemaLocation="http://www.isotc211.org/2005/gfc http://www.isotc211.org/2005/gfc/gfc.xsd" uuid="0fd6b47e-ebca-4378-8d86-b2a3a94d9d92">
791
+ <gmx:name>
792
+ <gco:CharacterString>Feature Catalog for Digital Map of Village Boundaries of Assam, India, 2001</gco:CharacterString>
793
+ </gmx:name>
794
+ <gmx:scope>
795
+ <gco:CharacterString>Sex ratio; Literacy; Statistics; Population; Administrative and political divisions</gco:CharacterString>
796
+ </gmx:scope>
797
+ <gmx:versionNumber gco:nilReason="unknown"/>
798
+ <gmx:versionDate>
799
+ <gco:Date>2013</gco:Date>
800
+ </gmx:versionDate>
801
+ <gmx:language>
802
+ <gco:CharacterString>eng; US</gco:CharacterString>
803
+ </gmx:language>
804
+ <gmx:characterSet>
805
+ <gmd:MD_CharacterSetCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115"/>
806
+ </gmx:characterSet>
807
+ <gfc:producer>
808
+ <gmd:CI_ResponsibleParty>
809
+ <gmd:organisationName>
810
+ <gco:CharacterString>ML InfoMap (Firm)</gco:CharacterString>
811
+ </gmd:organisationName>
812
+ <gmd:role>
813
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="006"/>
814
+ </gmd:role>
815
+ </gmd:CI_ResponsibleParty>
816
+ </gfc:producer>
817
+ <gfc:featureType>
818
+ <gfc:FC_FeatureType>
819
+ <gfc:typeName>
820
+ <gco:LocalName>ASSAM</gco:LocalName>
821
+ </gfc:typeName>
822
+ <gfc:definition>
823
+ <gco:CharacterString>Administrative Unit</gco:CharacterString>
824
+ </gfc:definition>
825
+ <gfc:isAbstract>
826
+ <gco:Boolean>false</gco:Boolean>
827
+ </gfc:isAbstract>
828
+ <gfc:featureCatalogue uuidref="0fd6b47e-ebca-4378-8d86-b2a3a94d9d92"/>
829
+ <gfc:carrierOfCharacteristics>
830
+ <gfc:FC_FeatureAttribute>
831
+ <gfc:memberName>
832
+ <gco:LocalName>FID</gco:LocalName>
833
+ </gfc:memberName>
834
+ <gfc:definition>
835
+ <gco:CharacterString>Internal feature number.</gco:CharacterString>
836
+ </gfc:definition>
837
+ <gfc:cardinality gco:nilReason="unknown"/>
838
+ <gfc:definitionReference>
839
+ <gfc:FC_DefinitionReference>
840
+ <gfc:definitionSource>
841
+ <gfc:FC_DefinitionSource>
842
+ <gfc:source>
843
+ <gmd:CI_Citation>
844
+ <gmd:title>
845
+ <gco:CharacterString>Esri</gco:CharacterString>
846
+ </gmd:title>
847
+ <gmd:date gco:nilReason="unknown"/>
848
+ <gmd:citedResponsibleParty>
849
+ <gmd:CI_ResponsibleParty>
850
+ <gmd:organisationName>
851
+ <gco:CharacterString>Esri</gco:CharacterString>
852
+ </gmd:organisationName>
853
+ <gmd:role>
854
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
855
+ </gmd:role>
856
+ </gmd:CI_ResponsibleParty>
857
+ </gmd:citedResponsibleParty>
858
+ </gmd:CI_Citation>
859
+ </gfc:source>
860
+ </gfc:FC_DefinitionSource>
861
+ </gfc:definitionSource>
862
+ </gfc:FC_DefinitionReference>
863
+ </gfc:definitionReference>
864
+ <gfc:valueType>
865
+ <gco:TypeName>
866
+ <gco:aName>
867
+ <gco:CharacterString>OID</gco:CharacterString>
868
+ </gco:aName>
869
+ </gco:TypeName>
870
+ </gfc:valueType>
871
+ </gfc:FC_FeatureAttribute>
872
+ </gfc:carrierOfCharacteristics>
873
+ <gfc:carrierOfCharacteristics>
874
+ <gfc:FC_FeatureAttribute>
875
+ <gfc:memberName>
876
+ <gco:LocalName>Shape</gco:LocalName>
877
+ </gfc:memberName>
878
+ <gfc:definition>
879
+ <gco:CharacterString>Feature geometry.</gco:CharacterString>
880
+ </gfc:definition>
881
+ <gfc:cardinality gco:nilReason="unknown"/>
882
+ <gfc:definitionReference>
883
+ <gfc:FC_DefinitionReference>
884
+ <gfc:definitionSource>
885
+ <gfc:FC_DefinitionSource>
886
+ <gfc:source>
887
+ <gmd:CI_Citation>
888
+ <gmd:title>
889
+ <gco:CharacterString>Esri</gco:CharacterString>
890
+ </gmd:title>
891
+ <gmd:date gco:nilReason="unknown"/>
892
+ <gmd:citedResponsibleParty>
893
+ <gmd:CI_ResponsibleParty>
894
+ <gmd:organisationName>
895
+ <gco:CharacterString>Esri</gco:CharacterString>
896
+ </gmd:organisationName>
897
+ <gmd:role>
898
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
899
+ </gmd:role>
900
+ </gmd:CI_ResponsibleParty>
901
+ </gmd:citedResponsibleParty>
902
+ </gmd:CI_Citation>
903
+ </gfc:source>
904
+ </gfc:FC_DefinitionSource>
905
+ </gfc:definitionSource>
906
+ </gfc:FC_DefinitionReference>
907
+ </gfc:definitionReference>
908
+ <gfc:valueType>
909
+ <gco:TypeName>
910
+ <gco:aName>
911
+ <gco:CharacterString>Geometry</gco:CharacterString>
912
+ </gco:aName>
913
+ </gco:TypeName>
914
+ </gfc:valueType>
915
+ </gfc:FC_FeatureAttribute>
916
+ </gfc:carrierOfCharacteristics>
917
+ <gfc:carrierOfCharacteristics>
918
+ <gfc:FC_FeatureAttribute>
919
+ <gfc:memberName>
920
+ <gco:LocalName>TOT_NM_HH</gco:LocalName>
921
+ </gfc:memberName>
922
+ <gfc:definition>
923
+ <gco:CharacterString>Total number of household</gco:CharacterString>
924
+ </gfc:definition>
925
+ <gfc:cardinality gco:nilReason="unknown"/>
926
+ <gfc:definitionReference>
927
+ <gfc:FC_DefinitionReference>
928
+ <gfc:definitionSource>
929
+ <gfc:FC_DefinitionSource>
930
+ <gfc:source>
931
+ <gmd:CI_Citation>
932
+ <gmd:title>
933
+ <gco:CharacterString>Census of India</gco:CharacterString>
934
+ </gmd:title>
935
+ <gmd:date gco:nilReason="unknown"/>
936
+ <gmd:citedResponsibleParty>
937
+ <gmd:CI_ResponsibleParty>
938
+ <gmd:organisationName>
939
+ <gco:CharacterString>Census of India</gco:CharacterString>
940
+ </gmd:organisationName>
941
+ <gmd:role>
942
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
943
+ </gmd:role>
944
+ </gmd:CI_ResponsibleParty>
945
+ </gmd:citedResponsibleParty>
946
+ </gmd:CI_Citation>
947
+ </gfc:source>
948
+ </gfc:FC_DefinitionSource>
949
+ </gfc:definitionSource>
950
+ </gfc:FC_DefinitionReference>
951
+ </gfc:definitionReference>
952
+ <gfc:valueType>
953
+ <gco:TypeName>
954
+ <gco:aName>
955
+ <gco:CharacterString>Double</gco:CharacterString>
956
+ </gco:aName>
957
+ </gco:TypeName>
958
+ </gfc:valueType>
959
+ </gfc:FC_FeatureAttribute>
960
+ </gfc:carrierOfCharacteristics>
961
+ <gfc:carrierOfCharacteristics>
962
+ <gfc:FC_FeatureAttribute>
963
+ <gfc:memberName>
964
+ <gco:LocalName>TOT_AGLB</gco:LocalName>
965
+ </gfc:memberName>
966
+ <gfc:definition>
967
+ <gco:CharacterString>Total Agricultural Labourers</gco:CharacterString>
968
+ </gfc:definition>
969
+ <gfc:cardinality gco:nilReason="unknown"/>
970
+ <gfc:definitionReference>
971
+ <gfc:FC_DefinitionReference>
972
+ <gfc:definitionSource>
973
+ <gfc:FC_DefinitionSource>
974
+ <gfc:source>
975
+ <gmd:CI_Citation>
976
+ <gmd:title>
977
+ <gco:CharacterString>Census of India</gco:CharacterString>
978
+ </gmd:title>
979
+ <gmd:date gco:nilReason="unknown"/>
980
+ <gmd:citedResponsibleParty>
981
+ <gmd:CI_ResponsibleParty>
982
+ <gmd:organisationName>
983
+ <gco:CharacterString>Census of India</gco:CharacterString>
984
+ </gmd:organisationName>
985
+ <gmd:role>
986
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
987
+ </gmd:role>
988
+ </gmd:CI_ResponsibleParty>
989
+ </gmd:citedResponsibleParty>
990
+ </gmd:CI_Citation>
991
+ </gfc:source>
992
+ </gfc:FC_DefinitionSource>
993
+ </gfc:definitionSource>
994
+ </gfc:FC_DefinitionReference>
995
+ </gfc:definitionReference>
996
+ <gfc:valueType>
997
+ <gco:TypeName>
998
+ <gco:aName>
999
+ <gco:CharacterString>Double</gco:CharacterString>
1000
+ </gco:aName>
1001
+ </gco:TypeName>
1002
+ </gfc:valueType>
1003
+ </gfc:FC_FeatureAttribute>
1004
+ </gfc:carrierOfCharacteristics>
1005
+ <gfc:carrierOfCharacteristics>
1006
+ <gfc:FC_FeatureAttribute>
1007
+ <gfc:memberName>
1008
+ <gco:LocalName>M_CULT</gco:LocalName>
1009
+ </gfc:memberName>
1010
+ <gfc:definition>
1011
+ <gco:CharacterString>Male Cultivators</gco:CharacterString>
1012
+ </gfc:definition>
1013
+ <gfc:cardinality gco:nilReason="unknown"/>
1014
+ <gfc:definitionReference>
1015
+ <gfc:FC_DefinitionReference>
1016
+ <gfc:definitionSource>
1017
+ <gfc:FC_DefinitionSource>
1018
+ <gfc:source>
1019
+ <gmd:CI_Citation>
1020
+ <gmd:title>
1021
+ <gco:CharacterString>Census of India</gco:CharacterString>
1022
+ </gmd:title>
1023
+ <gmd:date gco:nilReason="unknown"/>
1024
+ <gmd:citedResponsibleParty>
1025
+ <gmd:CI_ResponsibleParty>
1026
+ <gmd:organisationName>
1027
+ <gco:CharacterString>Census of India</gco:CharacterString>
1028
+ </gmd:organisationName>
1029
+ <gmd:role>
1030
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1031
+ </gmd:role>
1032
+ </gmd:CI_ResponsibleParty>
1033
+ </gmd:citedResponsibleParty>
1034
+ </gmd:CI_Citation>
1035
+ </gfc:source>
1036
+ </gfc:FC_DefinitionSource>
1037
+ </gfc:definitionSource>
1038
+ </gfc:FC_DefinitionReference>
1039
+ </gfc:definitionReference>
1040
+ <gfc:valueType>
1041
+ <gco:TypeName>
1042
+ <gco:aName>
1043
+ <gco:CharacterString>Double</gco:CharacterString>
1044
+ </gco:aName>
1045
+ </gco:TypeName>
1046
+ </gfc:valueType>
1047
+ </gfc:FC_FeatureAttribute>
1048
+ </gfc:carrierOfCharacteristics>
1049
+ <gfc:carrierOfCharacteristics>
1050
+ <gfc:FC_FeatureAttribute>
1051
+ <gfc:memberName>
1052
+ <gco:LocalName>T_MRG_CULT</gco:LocalName>
1053
+ </gfc:memberName>
1054
+ <gfc:definition>
1055
+ <gco:CharacterString>Total Marginal workers as cultivators</gco:CharacterString>
1056
+ </gfc:definition>
1057
+ <gfc:cardinality gco:nilReason="unknown"/>
1058
+ <gfc:definitionReference>
1059
+ <gfc:FC_DefinitionReference>
1060
+ <gfc:definitionSource>
1061
+ <gfc:FC_DefinitionSource>
1062
+ <gfc:source>
1063
+ <gmd:CI_Citation>
1064
+ <gmd:title>
1065
+ <gco:CharacterString>Census of India</gco:CharacterString>
1066
+ </gmd:title>
1067
+ <gmd:date gco:nilReason="unknown"/>
1068
+ <gmd:citedResponsibleParty>
1069
+ <gmd:CI_ResponsibleParty>
1070
+ <gmd:organisationName>
1071
+ <gco:CharacterString>Census of India</gco:CharacterString>
1072
+ </gmd:organisationName>
1073
+ <gmd:role>
1074
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1075
+ </gmd:role>
1076
+ </gmd:CI_ResponsibleParty>
1077
+ </gmd:citedResponsibleParty>
1078
+ </gmd:CI_Citation>
1079
+ </gfc:source>
1080
+ </gfc:FC_DefinitionSource>
1081
+ </gfc:definitionSource>
1082
+ </gfc:FC_DefinitionReference>
1083
+ </gfc:definitionReference>
1084
+ <gfc:valueType>
1085
+ <gco:TypeName>
1086
+ <gco:aName>
1087
+ <gco:CharacterString>Double</gco:CharacterString>
1088
+ </gco:aName>
1089
+ </gco:TypeName>
1090
+ </gfc:valueType>
1091
+ </gfc:FC_FeatureAttribute>
1092
+ </gfc:carrierOfCharacteristics>
1093
+ <gfc:carrierOfCharacteristics>
1094
+ <gfc:FC_FeatureAttribute>
1095
+ <gfc:memberName>
1096
+ <gco:LocalName>TOT_MRW</gco:LocalName>
1097
+ </gfc:memberName>
1098
+ <gfc:definition>
1099
+ <gco:CharacterString>Total Marginal workers other workers</gco:CharacterString>
1100
+ </gfc:definition>
1101
+ <gfc:cardinality gco:nilReason="unknown"/>
1102
+ <gfc:definitionReference>
1103
+ <gfc:FC_DefinitionReference>
1104
+ <gfc:definitionSource>
1105
+ <gfc:FC_DefinitionSource>
1106
+ <gfc:source>
1107
+ <gmd:CI_Citation>
1108
+ <gmd:title>
1109
+ <gco:CharacterString>Census of India</gco:CharacterString>
1110
+ </gmd:title>
1111
+ <gmd:date gco:nilReason="unknown"/>
1112
+ <gmd:citedResponsibleParty>
1113
+ <gmd:CI_ResponsibleParty>
1114
+ <gmd:organisationName>
1115
+ <gco:CharacterString>Census of India</gco:CharacterString>
1116
+ </gmd:organisationName>
1117
+ <gmd:role>
1118
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1119
+ </gmd:role>
1120
+ </gmd:CI_ResponsibleParty>
1121
+ </gmd:citedResponsibleParty>
1122
+ </gmd:CI_Citation>
1123
+ </gfc:source>
1124
+ </gfc:FC_DefinitionSource>
1125
+ </gfc:definitionSource>
1126
+ </gfc:FC_DefinitionReference>
1127
+ </gfc:definitionReference>
1128
+ <gfc:valueType>
1129
+ <gco:TypeName>
1130
+ <gco:aName>
1131
+ <gco:CharacterString>Double</gco:CharacterString>
1132
+ </gco:aName>
1133
+ </gco:TypeName>
1134
+ </gfc:valueType>
1135
+ </gfc:FC_FeatureAttribute>
1136
+ </gfc:carrierOfCharacteristics>
1137
+ <gfc:carrierOfCharacteristics>
1138
+ <gfc:FC_FeatureAttribute>
1139
+ <gfc:memberName>
1140
+ <gco:LocalName>TOT_ILLT</gco:LocalName>
1141
+ </gfc:memberName>
1142
+ <gfc:definition>
1143
+ <gco:CharacterString>Total Illiterates</gco:CharacterString>
1144
+ </gfc:definition>
1145
+ <gfc:cardinality gco:nilReason="unknown"/>
1146
+ <gfc:definitionReference>
1147
+ <gfc:FC_DefinitionReference>
1148
+ <gfc:definitionSource>
1149
+ <gfc:FC_DefinitionSource>
1150
+ <gfc:source>
1151
+ <gmd:CI_Citation>
1152
+ <gmd:title>
1153
+ <gco:CharacterString>Census of India</gco:CharacterString>
1154
+ </gmd:title>
1155
+ <gmd:date gco:nilReason="unknown"/>
1156
+ <gmd:citedResponsibleParty>
1157
+ <gmd:CI_ResponsibleParty>
1158
+ <gmd:organisationName>
1159
+ <gco:CharacterString>Census of India</gco:CharacterString>
1160
+ </gmd:organisationName>
1161
+ <gmd:role>
1162
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1163
+ </gmd:role>
1164
+ </gmd:CI_ResponsibleParty>
1165
+ </gmd:citedResponsibleParty>
1166
+ </gmd:CI_Citation>
1167
+ </gfc:source>
1168
+ </gfc:FC_DefinitionSource>
1169
+ </gfc:definitionSource>
1170
+ </gfc:FC_DefinitionReference>
1171
+ </gfc:definitionReference>
1172
+ <gfc:valueType>
1173
+ <gco:TypeName>
1174
+ <gco:aName>
1175
+ <gco:CharacterString>Double</gco:CharacterString>
1176
+ </gco:aName>
1177
+ </gco:TypeName>
1178
+ </gfc:valueType>
1179
+ </gfc:FC_FeatureAttribute>
1180
+ </gfc:carrierOfCharacteristics>
1181
+ <gfc:carrierOfCharacteristics>
1182
+ <gfc:FC_FeatureAttribute>
1183
+ <gfc:memberName>
1184
+ <gco:LocalName>TOT_LIT</gco:LocalName>
1185
+ </gfc:memberName>
1186
+ <gfc:definition>
1187
+ <gco:CharacterString>Total literates</gco:CharacterString>
1188
+ </gfc:definition>
1189
+ <gfc:cardinality gco:nilReason="unknown"/>
1190
+ <gfc:definitionReference>
1191
+ <gfc:FC_DefinitionReference>
1192
+ <gfc:definitionSource>
1193
+ <gfc:FC_DefinitionSource>
1194
+ <gfc:source>
1195
+ <gmd:CI_Citation>
1196
+ <gmd:title>
1197
+ <gco:CharacterString>Census of India</gco:CharacterString>
1198
+ </gmd:title>
1199
+ <gmd:date gco:nilReason="unknown"/>
1200
+ <gmd:citedResponsibleParty>
1201
+ <gmd:CI_ResponsibleParty>
1202
+ <gmd:organisationName>
1203
+ <gco:CharacterString>Census of India</gco:CharacterString>
1204
+ </gmd:organisationName>
1205
+ <gmd:role>
1206
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1207
+ </gmd:role>
1208
+ </gmd:CI_ResponsibleParty>
1209
+ </gmd:citedResponsibleParty>
1210
+ </gmd:CI_Citation>
1211
+ </gfc:source>
1212
+ </gfc:FC_DefinitionSource>
1213
+ </gfc:definitionSource>
1214
+ </gfc:FC_DefinitionReference>
1215
+ </gfc:definitionReference>
1216
+ <gfc:valueType>
1217
+ <gco:TypeName>
1218
+ <gco:aName>
1219
+ <gco:CharacterString>Double</gco:CharacterString>
1220
+ </gco:aName>
1221
+ </gco:TypeName>
1222
+ </gfc:valueType>
1223
+ </gfc:FC_FeatureAttribute>
1224
+ </gfc:carrierOfCharacteristics>
1225
+ <gfc:carrierOfCharacteristics>
1226
+ <gfc:FC_FeatureAttribute>
1227
+ <gfc:memberName>
1228
+ <gco:LocalName>F_SC</gco:LocalName>
1229
+ </gfc:memberName>
1230
+ <gfc:definition>
1231
+ <gco:CharacterString>Female scheduled caste</gco:CharacterString>
1232
+ </gfc:definition>
1233
+ <gfc:cardinality gco:nilReason="unknown"/>
1234
+ <gfc:definitionReference>
1235
+ <gfc:FC_DefinitionReference>
1236
+ <gfc:definitionSource>
1237
+ <gfc:FC_DefinitionSource>
1238
+ <gfc:source>
1239
+ <gmd:CI_Citation>
1240
+ <gmd:title>
1241
+ <gco:CharacterString>Census of India</gco:CharacterString>
1242
+ </gmd:title>
1243
+ <gmd:date gco:nilReason="unknown"/>
1244
+ <gmd:citedResponsibleParty>
1245
+ <gmd:CI_ResponsibleParty>
1246
+ <gmd:organisationName>
1247
+ <gco:CharacterString>Census of India</gco:CharacterString>
1248
+ </gmd:organisationName>
1249
+ <gmd:role>
1250
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1251
+ </gmd:role>
1252
+ </gmd:CI_ResponsibleParty>
1253
+ </gmd:citedResponsibleParty>
1254
+ </gmd:CI_Citation>
1255
+ </gfc:source>
1256
+ </gfc:FC_DefinitionSource>
1257
+ </gfc:definitionSource>
1258
+ </gfc:FC_DefinitionReference>
1259
+ </gfc:definitionReference>
1260
+ <gfc:valueType>
1261
+ <gco:TypeName>
1262
+ <gco:aName>
1263
+ <gco:CharacterString>Double</gco:CharacterString>
1264
+ </gco:aName>
1265
+ </gco:TypeName>
1266
+ </gfc:valueType>
1267
+ </gfc:FC_FeatureAttribute>
1268
+ </gfc:carrierOfCharacteristics>
1269
+ <gfc:carrierOfCharacteristics>
1270
+ <gfc:FC_FeatureAttribute>
1271
+ <gfc:memberName>
1272
+ <gco:LocalName>TOT_ST</gco:LocalName>
1273
+ </gfc:memberName>
1274
+ <gfc:definition>
1275
+ <gco:CharacterString>Total scheduled tribe</gco:CharacterString>
1276
+ </gfc:definition>
1277
+ <gfc:cardinality gco:nilReason="unknown"/>
1278
+ <gfc:definitionReference>
1279
+ <gfc:FC_DefinitionReference>
1280
+ <gfc:definitionSource>
1281
+ <gfc:FC_DefinitionSource>
1282
+ <gfc:source>
1283
+ <gmd:CI_Citation>
1284
+ <gmd:title>
1285
+ <gco:CharacterString>Census of India</gco:CharacterString>
1286
+ </gmd:title>
1287
+ <gmd:date gco:nilReason="unknown"/>
1288
+ <gmd:citedResponsibleParty>
1289
+ <gmd:CI_ResponsibleParty>
1290
+ <gmd:organisationName>
1291
+ <gco:CharacterString>Census of India</gco:CharacterString>
1292
+ </gmd:organisationName>
1293
+ <gmd:role>
1294
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1295
+ </gmd:role>
1296
+ </gmd:CI_ResponsibleParty>
1297
+ </gmd:citedResponsibleParty>
1298
+ </gmd:CI_Citation>
1299
+ </gfc:source>
1300
+ </gfc:FC_DefinitionSource>
1301
+ </gfc:definitionSource>
1302
+ </gfc:FC_DefinitionReference>
1303
+ </gfc:definitionReference>
1304
+ <gfc:valueType>
1305
+ <gco:TypeName>
1306
+ <gco:aName>
1307
+ <gco:CharacterString>Double</gco:CharacterString>
1308
+ </gco:aName>
1309
+ </gco:TypeName>
1310
+ </gfc:valueType>
1311
+ </gfc:FC_FeatureAttribute>
1312
+ </gfc:carrierOfCharacteristics>
1313
+ <gfc:carrierOfCharacteristics>
1314
+ <gfc:FC_FeatureAttribute>
1315
+ <gfc:memberName>
1316
+ <gco:LocalName>M_MFHH</gco:LocalName>
1317
+ </gfc:memberName>
1318
+ <gfc:definition>
1319
+ <gco:CharacterString>Male Household industry workers</gco:CharacterString>
1320
+ </gfc:definition>
1321
+ <gfc:cardinality gco:nilReason="unknown"/>
1322
+ <gfc:definitionReference>
1323
+ <gfc:FC_DefinitionReference>
1324
+ <gfc:definitionSource>
1325
+ <gfc:FC_DefinitionSource>
1326
+ <gfc:source>
1327
+ <gmd:CI_Citation>
1328
+ <gmd:title>
1329
+ <gco:CharacterString>Census of India</gco:CharacterString>
1330
+ </gmd:title>
1331
+ <gmd:date gco:nilReason="unknown"/>
1332
+ <gmd:citedResponsibleParty>
1333
+ <gmd:CI_ResponsibleParty>
1334
+ <gmd:organisationName>
1335
+ <gco:CharacterString>Census of India</gco:CharacterString>
1336
+ </gmd:organisationName>
1337
+ <gmd:role>
1338
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1339
+ </gmd:role>
1340
+ </gmd:CI_ResponsibleParty>
1341
+ </gmd:citedResponsibleParty>
1342
+ </gmd:CI_Citation>
1343
+ </gfc:source>
1344
+ </gfc:FC_DefinitionSource>
1345
+ </gfc:definitionSource>
1346
+ </gfc:FC_DefinitionReference>
1347
+ </gfc:definitionReference>
1348
+ <gfc:valueType>
1349
+ <gco:TypeName>
1350
+ <gco:aName>
1351
+ <gco:CharacterString>Double</gco:CharacterString>
1352
+ </gco:aName>
1353
+ </gco:TypeName>
1354
+ </gfc:valueType>
1355
+ </gfc:FC_FeatureAttribute>
1356
+ </gfc:carrierOfCharacteristics>
1357
+ <gfc:carrierOfCharacteristics>
1358
+ <gfc:FC_FeatureAttribute>
1359
+ <gfc:memberName>
1360
+ <gco:LocalName>NAME</gco:LocalName>
1361
+ </gfc:memberName>
1362
+ <gfc:definition>
1363
+ <gco:CharacterString>Name of village</gco:CharacterString>
1364
+ </gfc:definition>
1365
+ <gfc:cardinality gco:nilReason="unknown"/>
1366
+ <gfc:definitionReference>
1367
+ <gfc:FC_DefinitionReference>
1368
+ <gfc:definitionSource>
1369
+ <gfc:FC_DefinitionSource>
1370
+ <gfc:source>
1371
+ <gmd:CI_Citation>
1372
+ <gmd:title>
1373
+ <gco:CharacterString>Census of India</gco:CharacterString>
1374
+ </gmd:title>
1375
+ <gmd:date gco:nilReason="unknown"/>
1376
+ <gmd:citedResponsibleParty>
1377
+ <gmd:CI_ResponsibleParty>
1378
+ <gmd:organisationName>
1379
+ <gco:CharacterString>Census of India</gco:CharacterString>
1380
+ </gmd:organisationName>
1381
+ <gmd:role>
1382
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1383
+ </gmd:role>
1384
+ </gmd:CI_ResponsibleParty>
1385
+ </gmd:citedResponsibleParty>
1386
+ </gmd:CI_Citation>
1387
+ </gfc:source>
1388
+ </gfc:FC_DefinitionSource>
1389
+ </gfc:definitionSource>
1390
+ </gfc:FC_DefinitionReference>
1391
+ </gfc:definitionReference>
1392
+ <gfc:valueType>
1393
+ <gco:TypeName>
1394
+ <gco:aName>
1395
+ <gco:CharacterString>String</gco:CharacterString>
1396
+ </gco:aName>
1397
+ </gco:TypeName>
1398
+ </gfc:valueType>
1399
+ <gfc:listedValue>
1400
+ <gfc:FC_ListedValue>
1401
+ <gfc:label>
1402
+ <gco:CharacterString>Name</gco:CharacterString>
1403
+ </gfc:label>
1404
+ <gfc:definition>
1405
+ <gco:CharacterString>Village Names</gco:CharacterString>
1406
+ </gfc:definition>
1407
+ <gfc:definitionReference>
1408
+ <gfc:FC_DefinitionReference>
1409
+ <gfc:definitionSource>
1410
+ <gfc:FC_DefinitionSource>
1411
+ <gfc:source>
1412
+ <gmd:CI_Citation>
1413
+ <gmd:title>
1414
+ <gco:CharacterString>Census of India</gco:CharacterString>
1415
+ </gmd:title>
1416
+ <gmd:date gco:nilReason="unknown"/>
1417
+ <gmd:citedResponsibleParty>
1418
+ <gmd:CI_ResponsibleParty>
1419
+ <gmd:organisationName>
1420
+ <gco:CharacterString>Census of India</gco:CharacterString>
1421
+ </gmd:organisationName>
1422
+ <gmd:role>
1423
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1424
+ </gmd:role>
1425
+ </gmd:CI_ResponsibleParty>
1426
+ </gmd:citedResponsibleParty>
1427
+ </gmd:CI_Citation>
1428
+ </gfc:source>
1429
+ </gfc:FC_DefinitionSource>
1430
+ </gfc:definitionSource>
1431
+ </gfc:FC_DefinitionReference>
1432
+ </gfc:definitionReference>
1433
+ </gfc:FC_ListedValue>
1434
+ </gfc:listedValue>
1435
+ </gfc:FC_FeatureAttribute>
1436
+ </gfc:carrierOfCharacteristics>
1437
+ <gfc:carrierOfCharacteristics>
1438
+ <gfc:FC_FeatureAttribute>
1439
+ <gfc:memberName>
1440
+ <gco:LocalName>M_POP</gco:LocalName>
1441
+ </gfc:memberName>
1442
+ <gfc:definition>
1443
+ <gco:CharacterString>Male population</gco:CharacterString>
1444
+ </gfc:definition>
1445
+ <gfc:cardinality gco:nilReason="unknown"/>
1446
+ <gfc:definitionReference>
1447
+ <gfc:FC_DefinitionReference>
1448
+ <gfc:definitionSource>
1449
+ <gfc:FC_DefinitionSource>
1450
+ <gfc:source>
1451
+ <gmd:CI_Citation>
1452
+ <gmd:title>
1453
+ <gco:CharacterString>Census of India</gco:CharacterString>
1454
+ </gmd:title>
1455
+ <gmd:date gco:nilReason="unknown"/>
1456
+ <gmd:citedResponsibleParty>
1457
+ <gmd:CI_ResponsibleParty>
1458
+ <gmd:organisationName>
1459
+ <gco:CharacterString>Census of India</gco:CharacterString>
1460
+ </gmd:organisationName>
1461
+ <gmd:role>
1462
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1463
+ </gmd:role>
1464
+ </gmd:CI_ResponsibleParty>
1465
+ </gmd:citedResponsibleParty>
1466
+ </gmd:CI_Citation>
1467
+ </gfc:source>
1468
+ </gfc:FC_DefinitionSource>
1469
+ </gfc:definitionSource>
1470
+ </gfc:FC_DefinitionReference>
1471
+ </gfc:definitionReference>
1472
+ <gfc:valueType>
1473
+ <gco:TypeName>
1474
+ <gco:aName>
1475
+ <gco:CharacterString>Double</gco:CharacterString>
1476
+ </gco:aName>
1477
+ </gco:TypeName>
1478
+ </gfc:valueType>
1479
+ </gfc:FC_FeatureAttribute>
1480
+ </gfc:carrierOfCharacteristics>
1481
+ <gfc:carrierOfCharacteristics>
1482
+ <gfc:FC_FeatureAttribute>
1483
+ <gfc:memberName>
1484
+ <gco:LocalName>F_MNW</gco:LocalName>
1485
+ </gfc:memberName>
1486
+ <gfc:definition>
1487
+ <gco:CharacterString>Female Main Workers</gco:CharacterString>
1488
+ </gfc:definition>
1489
+ <gfc:cardinality gco:nilReason="unknown"/>
1490
+ <gfc:definitionReference>
1491
+ <gfc:FC_DefinitionReference>
1492
+ <gfc:definitionSource>
1493
+ <gfc:FC_DefinitionSource>
1494
+ <gfc:source>
1495
+ <gmd:CI_Citation>
1496
+ <gmd:title>
1497
+ <gco:CharacterString>Census of India</gco:CharacterString>
1498
+ </gmd:title>
1499
+ <gmd:date gco:nilReason="unknown"/>
1500
+ <gmd:citedResponsibleParty>
1501
+ <gmd:CI_ResponsibleParty>
1502
+ <gmd:organisationName>
1503
+ <gco:CharacterString>Census of India</gco:CharacterString>
1504
+ </gmd:organisationName>
1505
+ <gmd:role>
1506
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1507
+ </gmd:role>
1508
+ </gmd:CI_ResponsibleParty>
1509
+ </gmd:citedResponsibleParty>
1510
+ </gmd:CI_Citation>
1511
+ </gfc:source>
1512
+ </gfc:FC_DefinitionSource>
1513
+ </gfc:definitionSource>
1514
+ </gfc:FC_DefinitionReference>
1515
+ </gfc:definitionReference>
1516
+ <gfc:valueType>
1517
+ <gco:TypeName>
1518
+ <gco:aName>
1519
+ <gco:CharacterString>Double</gco:CharacterString>
1520
+ </gco:aName>
1521
+ </gco:TypeName>
1522
+ </gfc:valueType>
1523
+ </gfc:FC_FeatureAttribute>
1524
+ </gfc:carrierOfCharacteristics>
1525
+ <gfc:carrierOfCharacteristics>
1526
+ <gfc:FC_FeatureAttribute>
1527
+ <gfc:memberName>
1528
+ <gco:LocalName>TOT_MFHH</gco:LocalName>
1529
+ </gfc:memberName>
1530
+ <gfc:definition>
1531
+ <gco:CharacterString>Total Household industry workers</gco:CharacterString>
1532
+ </gfc:definition>
1533
+ <gfc:cardinality gco:nilReason="unknown"/>
1534
+ <gfc:definitionReference>
1535
+ <gfc:FC_DefinitionReference>
1536
+ <gfc:definitionSource>
1537
+ <gfc:FC_DefinitionSource>
1538
+ <gfc:source>
1539
+ <gmd:CI_Citation>
1540
+ <gmd:title>
1541
+ <gco:CharacterString>Census of India</gco:CharacterString>
1542
+ </gmd:title>
1543
+ <gmd:date gco:nilReason="unknown"/>
1544
+ <gmd:citedResponsibleParty>
1545
+ <gmd:CI_ResponsibleParty>
1546
+ <gmd:organisationName>
1547
+ <gco:CharacterString>Census of India</gco:CharacterString>
1548
+ </gmd:organisationName>
1549
+ <gmd:role>
1550
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1551
+ </gmd:role>
1552
+ </gmd:CI_ResponsibleParty>
1553
+ </gmd:citedResponsibleParty>
1554
+ </gmd:CI_Citation>
1555
+ </gfc:source>
1556
+ </gfc:FC_DefinitionSource>
1557
+ </gfc:definitionSource>
1558
+ </gfc:FC_DefinitionReference>
1559
+ </gfc:definitionReference>
1560
+ <gfc:valueType>
1561
+ <gco:TypeName>
1562
+ <gco:aName>
1563
+ <gco:CharacterString>Double</gco:CharacterString>
1564
+ </gco:aName>
1565
+ </gco:TypeName>
1566
+ </gfc:valueType>
1567
+ </gfc:FC_FeatureAttribute>
1568
+ </gfc:carrierOfCharacteristics>
1569
+ <gfc:carrierOfCharacteristics>
1570
+ <gfc:FC_FeatureAttribute>
1571
+ <gfc:memberName>
1572
+ <gco:LocalName>TOT_CULT</gco:LocalName>
1573
+ </gfc:memberName>
1574
+ <gfc:definition>
1575
+ <gco:CharacterString>Total Cultivators</gco:CharacterString>
1576
+ </gfc:definition>
1577
+ <gfc:cardinality gco:nilReason="unknown"/>
1578
+ <gfc:definitionReference>
1579
+ <gfc:FC_DefinitionReference>
1580
+ <gfc:definitionSource>
1581
+ <gfc:FC_DefinitionSource>
1582
+ <gfc:source>
1583
+ <gmd:CI_Citation>
1584
+ <gmd:title>
1585
+ <gco:CharacterString>Census of India</gco:CharacterString>
1586
+ </gmd:title>
1587
+ <gmd:date gco:nilReason="unknown"/>
1588
+ <gmd:citedResponsibleParty>
1589
+ <gmd:CI_ResponsibleParty>
1590
+ <gmd:organisationName>
1591
+ <gco:CharacterString>Census of India</gco:CharacterString>
1592
+ </gmd:organisationName>
1593
+ <gmd:role>
1594
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1595
+ </gmd:role>
1596
+ </gmd:CI_ResponsibleParty>
1597
+ </gmd:citedResponsibleParty>
1598
+ </gmd:CI_Citation>
1599
+ </gfc:source>
1600
+ </gfc:FC_DefinitionSource>
1601
+ </gfc:definitionSource>
1602
+ </gfc:FC_DefinitionReference>
1603
+ </gfc:definitionReference>
1604
+ <gfc:valueType>
1605
+ <gco:TypeName>
1606
+ <gco:aName>
1607
+ <gco:CharacterString>Double</gco:CharacterString>
1608
+ </gco:aName>
1609
+ </gco:TypeName>
1610
+ </gfc:valueType>
1611
+ </gfc:FC_FeatureAttribute>
1612
+ </gfc:carrierOfCharacteristics>
1613
+ <gfc:carrierOfCharacteristics>
1614
+ <gfc:FC_FeatureAttribute>
1615
+ <gfc:memberName>
1616
+ <gco:LocalName>M_MRG_OTH</gco:LocalName>
1617
+ </gfc:memberName>
1618
+ <gfc:definition>
1619
+ <gco:CharacterString>Male Marginal workers as other workers</gco:CharacterString>
1620
+ </gfc:definition>
1621
+ <gfc:cardinality gco:nilReason="unknown"/>
1622
+ <gfc:definitionReference>
1623
+ <gfc:FC_DefinitionReference>
1624
+ <gfc:definitionSource>
1625
+ <gfc:FC_DefinitionSource>
1626
+ <gfc:source>
1627
+ <gmd:CI_Citation>
1628
+ <gmd:title>
1629
+ <gco:CharacterString>Census of India</gco:CharacterString>
1630
+ </gmd:title>
1631
+ <gmd:date gco:nilReason="unknown"/>
1632
+ <gmd:citedResponsibleParty>
1633
+ <gmd:CI_ResponsibleParty>
1634
+ <gmd:organisationName>
1635
+ <gco:CharacterString>Census of India</gco:CharacterString>
1636
+ </gmd:organisationName>
1637
+ <gmd:role>
1638
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1639
+ </gmd:role>
1640
+ </gmd:CI_ResponsibleParty>
1641
+ </gmd:citedResponsibleParty>
1642
+ </gmd:CI_Citation>
1643
+ </gfc:source>
1644
+ </gfc:FC_DefinitionSource>
1645
+ </gfc:definitionSource>
1646
+ </gfc:FC_DefinitionReference>
1647
+ </gfc:definitionReference>
1648
+ <gfc:valueType>
1649
+ <gco:TypeName>
1650
+ <gco:aName>
1651
+ <gco:CharacterString>Double</gco:CharacterString>
1652
+ </gco:aName>
1653
+ </gco:TypeName>
1654
+ </gfc:valueType>
1655
+ </gfc:FC_FeatureAttribute>
1656
+ </gfc:carrierOfCharacteristics>
1657
+ <gfc:carrierOfCharacteristics>
1658
+ <gfc:FC_FeatureAttribute>
1659
+ <gfc:memberName>
1660
+ <gco:LocalName>T_MRG_OTH</gco:LocalName>
1661
+ </gfc:memberName>
1662
+ <gfc:definition>
1663
+ <gco:CharacterString>Total Marginal workers as other workers</gco:CharacterString>
1664
+ </gfc:definition>
1665
+ <gfc:cardinality gco:nilReason="unknown"/>
1666
+ <gfc:definitionReference>
1667
+ <gfc:FC_DefinitionReference>
1668
+ <gfc:definitionSource>
1669
+ <gfc:FC_DefinitionSource>
1670
+ <gfc:source>
1671
+ <gmd:CI_Citation>
1672
+ <gmd:title>
1673
+ <gco:CharacterString>Census of India</gco:CharacterString>
1674
+ </gmd:title>
1675
+ <gmd:date gco:nilReason="unknown"/>
1676
+ <gmd:citedResponsibleParty>
1677
+ <gmd:CI_ResponsibleParty>
1678
+ <gmd:organisationName>
1679
+ <gco:CharacterString>Census of India</gco:CharacterString>
1680
+ </gmd:organisationName>
1681
+ <gmd:role>
1682
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1683
+ </gmd:role>
1684
+ </gmd:CI_ResponsibleParty>
1685
+ </gmd:citedResponsibleParty>
1686
+ </gmd:CI_Citation>
1687
+ </gfc:source>
1688
+ </gfc:FC_DefinitionSource>
1689
+ </gfc:definitionSource>
1690
+ </gfc:FC_DefinitionReference>
1691
+ </gfc:definitionReference>
1692
+ <gfc:valueType>
1693
+ <gco:TypeName>
1694
+ <gco:aName>
1695
+ <gco:CharacterString>Double</gco:CharacterString>
1696
+ </gco:aName>
1697
+ </gco:TypeName>
1698
+ </gfc:valueType>
1699
+ </gfc:FC_FeatureAttribute>
1700
+ </gfc:carrierOfCharacteristics>
1701
+ <gfc:carrierOfCharacteristics>
1702
+ <gfc:FC_FeatureAttribute>
1703
+ <gfc:memberName>
1704
+ <gco:LocalName>F_MRG_HH</gco:LocalName>
1705
+ </gfc:memberName>
1706
+ <gfc:definition>
1707
+ <gco:CharacterString>Female Marginal workers household industry workers</gco:CharacterString>
1708
+ </gfc:definition>
1709
+ <gfc:cardinality gco:nilReason="unknown"/>
1710
+ <gfc:definitionReference>
1711
+ <gfc:FC_DefinitionReference>
1712
+ <gfc:definitionSource>
1713
+ <gfc:FC_DefinitionSource>
1714
+ <gfc:source>
1715
+ <gmd:CI_Citation>
1716
+ <gmd:title>
1717
+ <gco:CharacterString>Census of India</gco:CharacterString>
1718
+ </gmd:title>
1719
+ <gmd:date gco:nilReason="unknown"/>
1720
+ <gmd:citedResponsibleParty>
1721
+ <gmd:CI_ResponsibleParty>
1722
+ <gmd:organisationName>
1723
+ <gco:CharacterString>Census of India</gco:CharacterString>
1724
+ </gmd:organisationName>
1725
+ <gmd:role>
1726
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1727
+ </gmd:role>
1728
+ </gmd:CI_ResponsibleParty>
1729
+ </gmd:citedResponsibleParty>
1730
+ </gmd:CI_Citation>
1731
+ </gfc:source>
1732
+ </gfc:FC_DefinitionSource>
1733
+ </gfc:definitionSource>
1734
+ </gfc:FC_DefinitionReference>
1735
+ </gfc:definitionReference>
1736
+ <gfc:valueType>
1737
+ <gco:TypeName>
1738
+ <gco:aName>
1739
+ <gco:CharacterString>Double</gco:CharacterString>
1740
+ </gco:aName>
1741
+ </gco:TypeName>
1742
+ </gfc:valueType>
1743
+ </gfc:FC_FeatureAttribute>
1744
+ </gfc:carrierOfCharacteristics>
1745
+ <gfc:carrierOfCharacteristics>
1746
+ <gfc:FC_FeatureAttribute>
1747
+ <gfc:memberName>
1748
+ <gco:LocalName>M_MRG_HH</gco:LocalName>
1749
+ </gfc:memberName>
1750
+ <gfc:definition>
1751
+ <gco:CharacterString>Male Marginal workers household industry workers</gco:CharacterString>
1752
+ </gfc:definition>
1753
+ <gfc:cardinality gco:nilReason="unknown"/>
1754
+ <gfc:definitionReference>
1755
+ <gfc:FC_DefinitionReference>
1756
+ <gfc:definitionSource>
1757
+ <gfc:FC_DefinitionSource>
1758
+ <gfc:source>
1759
+ <gmd:CI_Citation>
1760
+ <gmd:title>
1761
+ <gco:CharacterString>Census of India</gco:CharacterString>
1762
+ </gmd:title>
1763
+ <gmd:date gco:nilReason="unknown"/>
1764
+ <gmd:citedResponsibleParty>
1765
+ <gmd:CI_ResponsibleParty>
1766
+ <gmd:organisationName>
1767
+ <gco:CharacterString>Census of India</gco:CharacterString>
1768
+ </gmd:organisationName>
1769
+ <gmd:role>
1770
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1771
+ </gmd:role>
1772
+ </gmd:CI_ResponsibleParty>
1773
+ </gmd:citedResponsibleParty>
1774
+ </gmd:CI_Citation>
1775
+ </gfc:source>
1776
+ </gfc:FC_DefinitionSource>
1777
+ </gfc:definitionSource>
1778
+ </gfc:FC_DefinitionReference>
1779
+ </gfc:definitionReference>
1780
+ <gfc:valueType>
1781
+ <gco:TypeName>
1782
+ <gco:aName>
1783
+ <gco:CharacterString>Double</gco:CharacterString>
1784
+ </gco:aName>
1785
+ </gco:TypeName>
1786
+ </gfc:valueType>
1787
+ </gfc:FC_FeatureAttribute>
1788
+ </gfc:carrierOfCharacteristics>
1789
+ <gfc:carrierOfCharacteristics>
1790
+ <gfc:FC_FeatureAttribute>
1791
+ <gfc:memberName>
1792
+ <gco:LocalName>F_NNW</gco:LocalName>
1793
+ </gfc:memberName>
1794
+ <gfc:definition>
1795
+ <gco:CharacterString>Female Non-workers</gco:CharacterString>
1796
+ </gfc:definition>
1797
+ <gfc:cardinality gco:nilReason="unknown"/>
1798
+ <gfc:definitionReference>
1799
+ <gfc:FC_DefinitionReference>
1800
+ <gfc:definitionSource>
1801
+ <gfc:FC_DefinitionSource>
1802
+ <gfc:source>
1803
+ <gmd:CI_Citation>
1804
+ <gmd:title>
1805
+ <gco:CharacterString>Census of India</gco:CharacterString>
1806
+ </gmd:title>
1807
+ <gmd:date gco:nilReason="unknown"/>
1808
+ <gmd:citedResponsibleParty>
1809
+ <gmd:CI_ResponsibleParty>
1810
+ <gmd:organisationName>
1811
+ <gco:CharacterString>Census of India</gco:CharacterString>
1812
+ </gmd:organisationName>
1813
+ <gmd:role>
1814
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1815
+ </gmd:role>
1816
+ </gmd:CI_ResponsibleParty>
1817
+ </gmd:citedResponsibleParty>
1818
+ </gmd:CI_Citation>
1819
+ </gfc:source>
1820
+ </gfc:FC_DefinitionSource>
1821
+ </gfc:definitionSource>
1822
+ </gfc:FC_DefinitionReference>
1823
+ </gfc:definitionReference>
1824
+ <gfc:valueType>
1825
+ <gco:TypeName>
1826
+ <gco:aName>
1827
+ <gco:CharacterString>Double</gco:CharacterString>
1828
+ </gco:aName>
1829
+ </gco:TypeName>
1830
+ </gfc:valueType>
1831
+ </gfc:FC_FeatureAttribute>
1832
+ </gfc:carrierOfCharacteristics>
1833
+ <gfc:carrierOfCharacteristics>
1834
+ <gfc:FC_FeatureAttribute>
1835
+ <gfc:memberName>
1836
+ <gco:LocalName>M_NNW</gco:LocalName>
1837
+ </gfc:memberName>
1838
+ <gfc:definition>
1839
+ <gco:CharacterString>Male Non-workers</gco:CharacterString>
1840
+ </gfc:definition>
1841
+ <gfc:cardinality gco:nilReason="unknown"/>
1842
+ <gfc:definitionReference>
1843
+ <gfc:FC_DefinitionReference>
1844
+ <gfc:definitionSource>
1845
+ <gfc:FC_DefinitionSource>
1846
+ <gfc:source>
1847
+ <gmd:CI_Citation>
1848
+ <gmd:title>
1849
+ <gco:CharacterString>Census of India</gco:CharacterString>
1850
+ </gmd:title>
1851
+ <gmd:date gco:nilReason="unknown"/>
1852
+ <gmd:citedResponsibleParty>
1853
+ <gmd:CI_ResponsibleParty>
1854
+ <gmd:organisationName>
1855
+ <gco:CharacterString>Census of India</gco:CharacterString>
1856
+ </gmd:organisationName>
1857
+ <gmd:role>
1858
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1859
+ </gmd:role>
1860
+ </gmd:CI_ResponsibleParty>
1861
+ </gmd:citedResponsibleParty>
1862
+ </gmd:CI_Citation>
1863
+ </gfc:source>
1864
+ </gfc:FC_DefinitionSource>
1865
+ </gfc:definitionSource>
1866
+ </gfc:FC_DefinitionReference>
1867
+ </gfc:definitionReference>
1868
+ <gfc:valueType>
1869
+ <gco:TypeName>
1870
+ <gco:aName>
1871
+ <gco:CharacterString>Double</gco:CharacterString>
1872
+ </gco:aName>
1873
+ </gco:TypeName>
1874
+ </gfc:valueType>
1875
+ </gfc:FC_FeatureAttribute>
1876
+ </gfc:carrierOfCharacteristics>
1877
+ <gfc:carrierOfCharacteristics>
1878
+ <gfc:FC_FeatureAttribute>
1879
+ <gfc:memberName>
1880
+ <gco:LocalName>TOT_NNW</gco:LocalName>
1881
+ </gfc:memberName>
1882
+ <gfc:definition>
1883
+ <gco:CharacterString>Total Non-workers</gco:CharacterString>
1884
+ </gfc:definition>
1885
+ <gfc:cardinality gco:nilReason="unknown"/>
1886
+ <gfc:definitionReference>
1887
+ <gfc:FC_DefinitionReference>
1888
+ <gfc:definitionSource>
1889
+ <gfc:FC_DefinitionSource>
1890
+ <gfc:source>
1891
+ <gmd:CI_Citation>
1892
+ <gmd:title>
1893
+ <gco:CharacterString>Census of India</gco:CharacterString>
1894
+ </gmd:title>
1895
+ <gmd:date gco:nilReason="unknown"/>
1896
+ <gmd:citedResponsibleParty>
1897
+ <gmd:CI_ResponsibleParty>
1898
+ <gmd:organisationName>
1899
+ <gco:CharacterString>Census of India</gco:CharacterString>
1900
+ </gmd:organisationName>
1901
+ <gmd:role>
1902
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1903
+ </gmd:role>
1904
+ </gmd:CI_ResponsibleParty>
1905
+ </gmd:citedResponsibleParty>
1906
+ </gmd:CI_Citation>
1907
+ </gfc:source>
1908
+ </gfc:FC_DefinitionSource>
1909
+ </gfc:definitionSource>
1910
+ </gfc:FC_DefinitionReference>
1911
+ </gfc:definitionReference>
1912
+ <gfc:valueType>
1913
+ <gco:TypeName>
1914
+ <gco:aName>
1915
+ <gco:CharacterString>Double</gco:CharacterString>
1916
+ </gco:aName>
1917
+ </gco:TypeName>
1918
+ </gfc:valueType>
1919
+ </gfc:FC_FeatureAttribute>
1920
+ </gfc:carrierOfCharacteristics>
1921
+ <gfc:carrierOfCharacteristics>
1922
+ <gfc:FC_FeatureAttribute>
1923
+ <gfc:memberName>
1924
+ <gco:LocalName>F_MRG_OTH</gco:LocalName>
1925
+ </gfc:memberName>
1926
+ <gfc:definition>
1927
+ <gco:CharacterString>Female Marginal workers as other workers</gco:CharacterString>
1928
+ </gfc:definition>
1929
+ <gfc:cardinality gco:nilReason="unknown"/>
1930
+ <gfc:definitionReference>
1931
+ <gfc:FC_DefinitionReference>
1932
+ <gfc:definitionSource>
1933
+ <gfc:FC_DefinitionSource>
1934
+ <gfc:source>
1935
+ <gmd:CI_Citation>
1936
+ <gmd:title>
1937
+ <gco:CharacterString>Census of India</gco:CharacterString>
1938
+ </gmd:title>
1939
+ <gmd:date gco:nilReason="unknown"/>
1940
+ <gmd:citedResponsibleParty>
1941
+ <gmd:CI_ResponsibleParty>
1942
+ <gmd:organisationName>
1943
+ <gco:CharacterString>Census of India</gco:CharacterString>
1944
+ </gmd:organisationName>
1945
+ <gmd:role>
1946
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1947
+ </gmd:role>
1948
+ </gmd:CI_ResponsibleParty>
1949
+ </gmd:citedResponsibleParty>
1950
+ </gmd:CI_Citation>
1951
+ </gfc:source>
1952
+ </gfc:FC_DefinitionSource>
1953
+ </gfc:definitionSource>
1954
+ </gfc:FC_DefinitionReference>
1955
+ </gfc:definitionReference>
1956
+ <gfc:valueType>
1957
+ <gco:TypeName>
1958
+ <gco:aName>
1959
+ <gco:CharacterString>Double</gco:CharacterString>
1960
+ </gco:aName>
1961
+ </gco:TypeName>
1962
+ </gfc:valueType>
1963
+ </gfc:FC_FeatureAttribute>
1964
+ </gfc:carrierOfCharacteristics>
1965
+ <gfc:carrierOfCharacteristics>
1966
+ <gfc:FC_FeatureAttribute>
1967
+ <gfc:memberName>
1968
+ <gco:LocalName>F_MRG_CULT</gco:LocalName>
1969
+ </gfc:memberName>
1970
+ <gfc:definition>
1971
+ <gco:CharacterString>Female Marginal workers as cultivators</gco:CharacterString>
1972
+ </gfc:definition>
1973
+ <gfc:cardinality gco:nilReason="unknown"/>
1974
+ <gfc:definitionReference>
1975
+ <gfc:FC_DefinitionReference>
1976
+ <gfc:definitionSource>
1977
+ <gfc:FC_DefinitionSource>
1978
+ <gfc:source>
1979
+ <gmd:CI_Citation>
1980
+ <gmd:title>
1981
+ <gco:CharacterString>Census of India</gco:CharacterString>
1982
+ </gmd:title>
1983
+ <gmd:date gco:nilReason="unknown"/>
1984
+ <gmd:citedResponsibleParty>
1985
+ <gmd:CI_ResponsibleParty>
1986
+ <gmd:organisationName>
1987
+ <gco:CharacterString>Census of India</gco:CharacterString>
1988
+ </gmd:organisationName>
1989
+ <gmd:role>
1990
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
1991
+ </gmd:role>
1992
+ </gmd:CI_ResponsibleParty>
1993
+ </gmd:citedResponsibleParty>
1994
+ </gmd:CI_Citation>
1995
+ </gfc:source>
1996
+ </gfc:FC_DefinitionSource>
1997
+ </gfc:definitionSource>
1998
+ </gfc:FC_DefinitionReference>
1999
+ </gfc:definitionReference>
2000
+ <gfc:valueType>
2001
+ <gco:TypeName>
2002
+ <gco:aName>
2003
+ <gco:CharacterString>Double</gco:CharacterString>
2004
+ </gco:aName>
2005
+ </gco:TypeName>
2006
+ </gfc:valueType>
2007
+ </gfc:FC_FeatureAttribute>
2008
+ </gfc:carrierOfCharacteristics>
2009
+ <gfc:carrierOfCharacteristics>
2010
+ <gfc:FC_FeatureAttribute>
2011
+ <gfc:memberName>
2012
+ <gco:LocalName>T_MRG_HH</gco:LocalName>
2013
+ </gfc:memberName>
2014
+ <gfc:definition>
2015
+ <gco:CharacterString>Total Marginal workers household industry workers</gco:CharacterString>
2016
+ </gfc:definition>
2017
+ <gfc:cardinality gco:nilReason="unknown"/>
2018
+ <gfc:definitionReference>
2019
+ <gfc:FC_DefinitionReference>
2020
+ <gfc:definitionSource>
2021
+ <gfc:FC_DefinitionSource>
2022
+ <gfc:source>
2023
+ <gmd:CI_Citation>
2024
+ <gmd:title>
2025
+ <gco:CharacterString>Census of India</gco:CharacterString>
2026
+ </gmd:title>
2027
+ <gmd:date gco:nilReason="unknown"/>
2028
+ <gmd:citedResponsibleParty>
2029
+ <gmd:CI_ResponsibleParty>
2030
+ <gmd:organisationName>
2031
+ <gco:CharacterString>Census of India</gco:CharacterString>
2032
+ </gmd:organisationName>
2033
+ <gmd:role>
2034
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2035
+ </gmd:role>
2036
+ </gmd:CI_ResponsibleParty>
2037
+ </gmd:citedResponsibleParty>
2038
+ </gmd:CI_Citation>
2039
+ </gfc:source>
2040
+ </gfc:FC_DefinitionSource>
2041
+ </gfc:definitionSource>
2042
+ </gfc:FC_DefinitionReference>
2043
+ </gfc:definitionReference>
2044
+ <gfc:valueType>
2045
+ <gco:TypeName>
2046
+ <gco:aName>
2047
+ <gco:CharacterString>Double</gco:CharacterString>
2048
+ </gco:aName>
2049
+ </gco:TypeName>
2050
+ </gfc:valueType>
2051
+ </gfc:FC_FeatureAttribute>
2052
+ </gfc:carrierOfCharacteristics>
2053
+ <gfc:carrierOfCharacteristics>
2054
+ <gfc:FC_FeatureAttribute>
2055
+ <gfc:memberName>
2056
+ <gco:LocalName>F_MRG_AGLB</gco:LocalName>
2057
+ </gfc:memberName>
2058
+ <gfc:definition>
2059
+ <gco:CharacterString>Female Marginal workers as agricultural labourers</gco:CharacterString>
2060
+ </gfc:definition>
2061
+ <gfc:cardinality gco:nilReason="unknown"/>
2062
+ <gfc:definitionReference>
2063
+ <gfc:FC_DefinitionReference>
2064
+ <gfc:definitionSource>
2065
+ <gfc:FC_DefinitionSource>
2066
+ <gfc:source>
2067
+ <gmd:CI_Citation>
2068
+ <gmd:title>
2069
+ <gco:CharacterString>Census of India</gco:CharacterString>
2070
+ </gmd:title>
2071
+ <gmd:date gco:nilReason="unknown"/>
2072
+ <gmd:citedResponsibleParty>
2073
+ <gmd:CI_ResponsibleParty>
2074
+ <gmd:organisationName>
2075
+ <gco:CharacterString>Census of India</gco:CharacterString>
2076
+ </gmd:organisationName>
2077
+ <gmd:role>
2078
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2079
+ </gmd:role>
2080
+ </gmd:CI_ResponsibleParty>
2081
+ </gmd:citedResponsibleParty>
2082
+ </gmd:CI_Citation>
2083
+ </gfc:source>
2084
+ </gfc:FC_DefinitionSource>
2085
+ </gfc:definitionSource>
2086
+ </gfc:FC_DefinitionReference>
2087
+ </gfc:definitionReference>
2088
+ <gfc:valueType>
2089
+ <gco:TypeName>
2090
+ <gco:aName>
2091
+ <gco:CharacterString>Double</gco:CharacterString>
2092
+ </gco:aName>
2093
+ </gco:TypeName>
2094
+ </gfc:valueType>
2095
+ </gfc:FC_FeatureAttribute>
2096
+ </gfc:carrierOfCharacteristics>
2097
+ <gfc:carrierOfCharacteristics>
2098
+ <gfc:FC_FeatureAttribute>
2099
+ <gfc:memberName>
2100
+ <gco:LocalName>M_MRG_AGLB</gco:LocalName>
2101
+ </gfc:memberName>
2102
+ <gfc:definition>
2103
+ <gco:CharacterString>Male Marginal workers as agricultural labourers</gco:CharacterString>
2104
+ </gfc:definition>
2105
+ <gfc:cardinality gco:nilReason="unknown"/>
2106
+ <gfc:definitionReference>
2107
+ <gfc:FC_DefinitionReference>
2108
+ <gfc:definitionSource>
2109
+ <gfc:FC_DefinitionSource>
2110
+ <gfc:source>
2111
+ <gmd:CI_Citation>
2112
+ <gmd:title>
2113
+ <gco:CharacterString>Census of India</gco:CharacterString>
2114
+ </gmd:title>
2115
+ <gmd:date gco:nilReason="unknown"/>
2116
+ <gmd:citedResponsibleParty>
2117
+ <gmd:CI_ResponsibleParty>
2118
+ <gmd:organisationName>
2119
+ <gco:CharacterString>Census of India</gco:CharacterString>
2120
+ </gmd:organisationName>
2121
+ <gmd:role>
2122
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2123
+ </gmd:role>
2124
+ </gmd:CI_ResponsibleParty>
2125
+ </gmd:citedResponsibleParty>
2126
+ </gmd:CI_Citation>
2127
+ </gfc:source>
2128
+ </gfc:FC_DefinitionSource>
2129
+ </gfc:definitionSource>
2130
+ </gfc:FC_DefinitionReference>
2131
+ </gfc:definitionReference>
2132
+ <gfc:valueType>
2133
+ <gco:TypeName>
2134
+ <gco:aName>
2135
+ <gco:CharacterString>Double</gco:CharacterString>
2136
+ </gco:aName>
2137
+ </gco:TypeName>
2138
+ </gfc:valueType>
2139
+ </gfc:FC_FeatureAttribute>
2140
+ </gfc:carrierOfCharacteristics>
2141
+ <gfc:carrierOfCharacteristics>
2142
+ <gfc:FC_FeatureAttribute>
2143
+ <gfc:memberName>
2144
+ <gco:LocalName>T_MRG_AGLB</gco:LocalName>
2145
+ </gfc:memberName>
2146
+ <gfc:definition>
2147
+ <gco:CharacterString>Total Marginal workers as agricultural labourers</gco:CharacterString>
2148
+ </gfc:definition>
2149
+ <gfc:cardinality gco:nilReason="unknown"/>
2150
+ <gfc:definitionReference>
2151
+ <gfc:FC_DefinitionReference>
2152
+ <gfc:definitionSource>
2153
+ <gfc:FC_DefinitionSource>
2154
+ <gfc:source>
2155
+ <gmd:CI_Citation>
2156
+ <gmd:title>
2157
+ <gco:CharacterString>Census of India</gco:CharacterString>
2158
+ </gmd:title>
2159
+ <gmd:date gco:nilReason="unknown"/>
2160
+ <gmd:citedResponsibleParty>
2161
+ <gmd:CI_ResponsibleParty>
2162
+ <gmd:organisationName>
2163
+ <gco:CharacterString>Census of India</gco:CharacterString>
2164
+ </gmd:organisationName>
2165
+ <gmd:role>
2166
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2167
+ </gmd:role>
2168
+ </gmd:CI_ResponsibleParty>
2169
+ </gmd:citedResponsibleParty>
2170
+ </gmd:CI_Citation>
2171
+ </gfc:source>
2172
+ </gfc:FC_DefinitionSource>
2173
+ </gfc:definitionSource>
2174
+ </gfc:FC_DefinitionReference>
2175
+ </gfc:definitionReference>
2176
+ <gfc:valueType>
2177
+ <gco:TypeName>
2178
+ <gco:aName>
2179
+ <gco:CharacterString>Double</gco:CharacterString>
2180
+ </gco:aName>
2181
+ </gco:TypeName>
2182
+ </gfc:valueType>
2183
+ </gfc:FC_FeatureAttribute>
2184
+ </gfc:carrierOfCharacteristics>
2185
+ <gfc:carrierOfCharacteristics>
2186
+ <gfc:FC_FeatureAttribute>
2187
+ <gfc:memberName>
2188
+ <gco:LocalName>F_MRW</gco:LocalName>
2189
+ </gfc:memberName>
2190
+ <gfc:definition>
2191
+ <gco:CharacterString>Female Marginal workers other workers</gco:CharacterString>
2192
+ </gfc:definition>
2193
+ <gfc:cardinality gco:nilReason="unknown"/>
2194
+ <gfc:definitionReference>
2195
+ <gfc:FC_DefinitionReference>
2196
+ <gfc:definitionSource>
2197
+ <gfc:FC_DefinitionSource>
2198
+ <gfc:source>
2199
+ <gmd:CI_Citation>
2200
+ <gmd:title>
2201
+ <gco:CharacterString>Census of India</gco:CharacterString>
2202
+ </gmd:title>
2203
+ <gmd:date gco:nilReason="unknown"/>
2204
+ <gmd:citedResponsibleParty>
2205
+ <gmd:CI_ResponsibleParty>
2206
+ <gmd:organisationName>
2207
+ <gco:CharacterString>Census of India</gco:CharacterString>
2208
+ </gmd:organisationName>
2209
+ <gmd:role>
2210
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2211
+ </gmd:role>
2212
+ </gmd:CI_ResponsibleParty>
2213
+ </gmd:citedResponsibleParty>
2214
+ </gmd:CI_Citation>
2215
+ </gfc:source>
2216
+ </gfc:FC_DefinitionSource>
2217
+ </gfc:definitionSource>
2218
+ </gfc:FC_DefinitionReference>
2219
+ </gfc:definitionReference>
2220
+ <gfc:valueType>
2221
+ <gco:TypeName>
2222
+ <gco:aName>
2223
+ <gco:CharacterString>Double</gco:CharacterString>
2224
+ </gco:aName>
2225
+ </gco:TypeName>
2226
+ </gfc:valueType>
2227
+ </gfc:FC_FeatureAttribute>
2228
+ </gfc:carrierOfCharacteristics>
2229
+ <gfc:carrierOfCharacteristics>
2230
+ <gfc:FC_FeatureAttribute>
2231
+ <gfc:memberName>
2232
+ <gco:LocalName>M_W</gco:LocalName>
2233
+ </gfc:memberName>
2234
+ <gfc:definition>
2235
+ <gco:CharacterString>Male Total Workers</gco:CharacterString>
2236
+ </gfc:definition>
2237
+ <gfc:cardinality gco:nilReason="unknown"/>
2238
+ <gfc:definitionReference>
2239
+ <gfc:FC_DefinitionReference>
2240
+ <gfc:definitionSource>
2241
+ <gfc:FC_DefinitionSource>
2242
+ <gfc:source>
2243
+ <gmd:CI_Citation>
2244
+ <gmd:title>
2245
+ <gco:CharacterString>Census of India</gco:CharacterString>
2246
+ </gmd:title>
2247
+ <gmd:date gco:nilReason="unknown"/>
2248
+ <gmd:citedResponsibleParty>
2249
+ <gmd:CI_ResponsibleParty>
2250
+ <gmd:organisationName>
2251
+ <gco:CharacterString>Census of India</gco:CharacterString>
2252
+ </gmd:organisationName>
2253
+ <gmd:role>
2254
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2255
+ </gmd:role>
2256
+ </gmd:CI_ResponsibleParty>
2257
+ </gmd:citedResponsibleParty>
2258
+ </gmd:CI_Citation>
2259
+ </gfc:source>
2260
+ </gfc:FC_DefinitionSource>
2261
+ </gfc:definitionSource>
2262
+ </gfc:FC_DefinitionReference>
2263
+ </gfc:definitionReference>
2264
+ <gfc:valueType>
2265
+ <gco:TypeName>
2266
+ <gco:aName>
2267
+ <gco:CharacterString>Double</gco:CharacterString>
2268
+ </gco:aName>
2269
+ </gco:TypeName>
2270
+ </gfc:valueType>
2271
+ </gfc:FC_FeatureAttribute>
2272
+ </gfc:carrierOfCharacteristics>
2273
+ <gfc:carrierOfCharacteristics>
2274
+ <gfc:FC_FeatureAttribute>
2275
+ <gfc:memberName>
2276
+ <gco:LocalName>TOT_W</gco:LocalName>
2277
+ </gfc:memberName>
2278
+ <gfc:definition>
2279
+ <gco:CharacterString>Total Workers</gco:CharacterString>
2280
+ </gfc:definition>
2281
+ <gfc:cardinality gco:nilReason="unknown"/>
2282
+ <gfc:definitionReference>
2283
+ <gfc:FC_DefinitionReference>
2284
+ <gfc:definitionSource>
2285
+ <gfc:FC_DefinitionSource>
2286
+ <gfc:source>
2287
+ <gmd:CI_Citation>
2288
+ <gmd:title>
2289
+ <gco:CharacterString>Census of India</gco:CharacterString>
2290
+ </gmd:title>
2291
+ <gmd:date gco:nilReason="unknown"/>
2292
+ <gmd:citedResponsibleParty>
2293
+ <gmd:CI_ResponsibleParty>
2294
+ <gmd:organisationName>
2295
+ <gco:CharacterString>Census of India</gco:CharacterString>
2296
+ </gmd:organisationName>
2297
+ <gmd:role>
2298
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2299
+ </gmd:role>
2300
+ </gmd:CI_ResponsibleParty>
2301
+ </gmd:citedResponsibleParty>
2302
+ </gmd:CI_Citation>
2303
+ </gfc:source>
2304
+ </gfc:FC_DefinitionSource>
2305
+ </gfc:definitionSource>
2306
+ </gfc:FC_DefinitionReference>
2307
+ </gfc:definitionReference>
2308
+ <gfc:valueType>
2309
+ <gco:TypeName>
2310
+ <gco:aName>
2311
+ <gco:CharacterString>Double</gco:CharacterString>
2312
+ </gco:aName>
2313
+ </gco:TypeName>
2314
+ </gfc:valueType>
2315
+ </gfc:FC_FeatureAttribute>
2316
+ </gfc:carrierOfCharacteristics>
2317
+ <gfc:carrierOfCharacteristics>
2318
+ <gfc:FC_FeatureAttribute>
2319
+ <gfc:memberName>
2320
+ <gco:LocalName>TOT_SC</gco:LocalName>
2321
+ </gfc:memberName>
2322
+ <gfc:definition>
2323
+ <gco:CharacterString>Total scheduled caste</gco:CharacterString>
2324
+ </gfc:definition>
2325
+ <gfc:cardinality gco:nilReason="unknown"/>
2326
+ <gfc:definitionReference>
2327
+ <gfc:FC_DefinitionReference>
2328
+ <gfc:definitionSource>
2329
+ <gfc:FC_DefinitionSource>
2330
+ <gfc:source>
2331
+ <gmd:CI_Citation>
2332
+ <gmd:title>
2333
+ <gco:CharacterString>Census of India</gco:CharacterString>
2334
+ </gmd:title>
2335
+ <gmd:date gco:nilReason="unknown"/>
2336
+ <gmd:citedResponsibleParty>
2337
+ <gmd:CI_ResponsibleParty>
2338
+ <gmd:organisationName>
2339
+ <gco:CharacterString>Census of India</gco:CharacterString>
2340
+ </gmd:organisationName>
2341
+ <gmd:role>
2342
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2343
+ </gmd:role>
2344
+ </gmd:CI_ResponsibleParty>
2345
+ </gmd:citedResponsibleParty>
2346
+ </gmd:CI_Citation>
2347
+ </gfc:source>
2348
+ </gfc:FC_DefinitionSource>
2349
+ </gfc:definitionSource>
2350
+ </gfc:FC_DefinitionReference>
2351
+ </gfc:definitionReference>
2352
+ <gfc:valueType>
2353
+ <gco:TypeName>
2354
+ <gco:aName>
2355
+ <gco:CharacterString>Double</gco:CharacterString>
2356
+ </gco:aName>
2357
+ </gco:TypeName>
2358
+ </gfc:valueType>
2359
+ </gfc:FC_FeatureAttribute>
2360
+ </gfc:carrierOfCharacteristics>
2361
+ <gfc:carrierOfCharacteristics>
2362
+ <gfc:FC_FeatureAttribute>
2363
+ <gfc:memberName>
2364
+ <gco:LocalName>F_W</gco:LocalName>
2365
+ </gfc:memberName>
2366
+ <gfc:definition>
2367
+ <gco:CharacterString>Female Total Workers</gco:CharacterString>
2368
+ </gfc:definition>
2369
+ <gfc:cardinality gco:nilReason="unknown"/>
2370
+ <gfc:definitionReference>
2371
+ <gfc:FC_DefinitionReference>
2372
+ <gfc:definitionSource>
2373
+ <gfc:FC_DefinitionSource>
2374
+ <gfc:source>
2375
+ <gmd:CI_Citation>
2376
+ <gmd:title>
2377
+ <gco:CharacterString>Census of India</gco:CharacterString>
2378
+ </gmd:title>
2379
+ <gmd:date gco:nilReason="unknown"/>
2380
+ <gmd:citedResponsibleParty>
2381
+ <gmd:CI_ResponsibleParty>
2382
+ <gmd:organisationName>
2383
+ <gco:CharacterString>Census of India</gco:CharacterString>
2384
+ </gmd:organisationName>
2385
+ <gmd:role>
2386
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2387
+ </gmd:role>
2388
+ </gmd:CI_ResponsibleParty>
2389
+ </gmd:citedResponsibleParty>
2390
+ </gmd:CI_Citation>
2391
+ </gfc:source>
2392
+ </gfc:FC_DefinitionSource>
2393
+ </gfc:definitionSource>
2394
+ </gfc:FC_DefinitionReference>
2395
+ </gfc:definitionReference>
2396
+ <gfc:valueType>
2397
+ <gco:TypeName>
2398
+ <gco:aName>
2399
+ <gco:CharacterString>Double</gco:CharacterString>
2400
+ </gco:aName>
2401
+ </gco:TypeName>
2402
+ </gfc:valueType>
2403
+ </gfc:FC_FeatureAttribute>
2404
+ </gfc:carrierOfCharacteristics>
2405
+ <gfc:carrierOfCharacteristics>
2406
+ <gfc:FC_FeatureAttribute>
2407
+ <gfc:memberName>
2408
+ <gco:LocalName>F_POP</gco:LocalName>
2409
+ </gfc:memberName>
2410
+ <gfc:definition>
2411
+ <gco:CharacterString>Female population</gco:CharacterString>
2412
+ </gfc:definition>
2413
+ <gfc:cardinality gco:nilReason="unknown"/>
2414
+ <gfc:definitionReference>
2415
+ <gfc:FC_DefinitionReference>
2416
+ <gfc:definitionSource>
2417
+ <gfc:FC_DefinitionSource>
2418
+ <gfc:source>
2419
+ <gmd:CI_Citation>
2420
+ <gmd:title>
2421
+ <gco:CharacterString>Census of India</gco:CharacterString>
2422
+ </gmd:title>
2423
+ <gmd:date gco:nilReason="unknown"/>
2424
+ <gmd:citedResponsibleParty>
2425
+ <gmd:CI_ResponsibleParty>
2426
+ <gmd:organisationName>
2427
+ <gco:CharacterString>Census of India</gco:CharacterString>
2428
+ </gmd:organisationName>
2429
+ <gmd:role>
2430
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2431
+ </gmd:role>
2432
+ </gmd:CI_ResponsibleParty>
2433
+ </gmd:citedResponsibleParty>
2434
+ </gmd:CI_Citation>
2435
+ </gfc:source>
2436
+ </gfc:FC_DefinitionSource>
2437
+ </gfc:definitionSource>
2438
+ </gfc:FC_DefinitionReference>
2439
+ </gfc:definitionReference>
2440
+ <gfc:valueType>
2441
+ <gco:TypeName>
2442
+ <gco:aName>
2443
+ <gco:CharacterString>Double</gco:CharacterString>
2444
+ </gco:aName>
2445
+ </gco:TypeName>
2446
+ </gfc:valueType>
2447
+ </gfc:FC_FeatureAttribute>
2448
+ </gfc:carrierOfCharacteristics>
2449
+ <gfc:carrierOfCharacteristics>
2450
+ <gfc:FC_FeatureAttribute>
2451
+ <gfc:memberName>
2452
+ <gco:LocalName>F_ILLT</gco:LocalName>
2453
+ </gfc:memberName>
2454
+ <gfc:definition>
2455
+ <gco:CharacterString>Female Illiterates</gco:CharacterString>
2456
+ </gfc:definition>
2457
+ <gfc:cardinality gco:nilReason="unknown"/>
2458
+ <gfc:definitionReference>
2459
+ <gfc:FC_DefinitionReference>
2460
+ <gfc:definitionSource>
2461
+ <gfc:FC_DefinitionSource>
2462
+ <gfc:source>
2463
+ <gmd:CI_Citation>
2464
+ <gmd:title>
2465
+ <gco:CharacterString>Census of India</gco:CharacterString>
2466
+ </gmd:title>
2467
+ <gmd:date gco:nilReason="unknown"/>
2468
+ <gmd:citedResponsibleParty>
2469
+ <gmd:CI_ResponsibleParty>
2470
+ <gmd:organisationName>
2471
+ <gco:CharacterString>Census of India</gco:CharacterString>
2472
+ </gmd:organisationName>
2473
+ <gmd:role>
2474
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2475
+ </gmd:role>
2476
+ </gmd:CI_ResponsibleParty>
2477
+ </gmd:citedResponsibleParty>
2478
+ </gmd:CI_Citation>
2479
+ </gfc:source>
2480
+ </gfc:FC_DefinitionSource>
2481
+ </gfc:definitionSource>
2482
+ </gfc:FC_DefinitionReference>
2483
+ </gfc:definitionReference>
2484
+ <gfc:valueType>
2485
+ <gco:TypeName>
2486
+ <gco:aName>
2487
+ <gco:CharacterString>Double</gco:CharacterString>
2488
+ </gco:aName>
2489
+ </gco:TypeName>
2490
+ </gfc:valueType>
2491
+ </gfc:FC_FeatureAttribute>
2492
+ </gfc:carrierOfCharacteristics>
2493
+ <gfc:carrierOfCharacteristics>
2494
+ <gfc:FC_FeatureAttribute>
2495
+ <gfc:memberName>
2496
+ <gco:LocalName>TOT_POP</gco:LocalName>
2497
+ </gfc:memberName>
2498
+ <gfc:definition>
2499
+ <gco:CharacterString>Total population</gco:CharacterString>
2500
+ </gfc:definition>
2501
+ <gfc:cardinality gco:nilReason="unknown"/>
2502
+ <gfc:definitionReference>
2503
+ <gfc:FC_DefinitionReference>
2504
+ <gfc:definitionSource>
2505
+ <gfc:FC_DefinitionSource>
2506
+ <gfc:source>
2507
+ <gmd:CI_Citation>
2508
+ <gmd:title>
2509
+ <gco:CharacterString>Census of India</gco:CharacterString>
2510
+ </gmd:title>
2511
+ <gmd:date gco:nilReason="unknown"/>
2512
+ <gmd:citedResponsibleParty>
2513
+ <gmd:CI_ResponsibleParty>
2514
+ <gmd:organisationName>
2515
+ <gco:CharacterString>Census of India</gco:CharacterString>
2516
+ </gmd:organisationName>
2517
+ <gmd:role>
2518
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2519
+ </gmd:role>
2520
+ </gmd:CI_ResponsibleParty>
2521
+ </gmd:citedResponsibleParty>
2522
+ </gmd:CI_Citation>
2523
+ </gfc:source>
2524
+ </gfc:FC_DefinitionSource>
2525
+ </gfc:definitionSource>
2526
+ </gfc:FC_DefinitionReference>
2527
+ </gfc:definitionReference>
2528
+ <gfc:valueType>
2529
+ <gco:TypeName>
2530
+ <gco:aName>
2531
+ <gco:CharacterString>Double</gco:CharacterString>
2532
+ </gco:aName>
2533
+ </gco:TypeName>
2534
+ </gfc:valueType>
2535
+ </gfc:FC_FeatureAttribute>
2536
+ </gfc:carrierOfCharacteristics>
2537
+ <gfc:carrierOfCharacteristics>
2538
+ <gfc:FC_FeatureAttribute>
2539
+ <gfc:memberName>
2540
+ <gco:LocalName>LEVEL</gco:LocalName>
2541
+ </gfc:memberName>
2542
+ <gfc:definition>
2543
+ <gco:CharacterString>Village or Town</gco:CharacterString>
2544
+ </gfc:definition>
2545
+ <gfc:cardinality gco:nilReason="unknown"/>
2546
+ <gfc:definitionReference>
2547
+ <gfc:FC_DefinitionReference>
2548
+ <gfc:definitionSource>
2549
+ <gfc:FC_DefinitionSource>
2550
+ <gfc:source>
2551
+ <gmd:CI_Citation>
2552
+ <gmd:title>
2553
+ <gco:CharacterString>Census of India</gco:CharacterString>
2554
+ </gmd:title>
2555
+ <gmd:date gco:nilReason="unknown"/>
2556
+ <gmd:citedResponsibleParty>
2557
+ <gmd:CI_ResponsibleParty>
2558
+ <gmd:organisationName>
2559
+ <gco:CharacterString>Census of India</gco:CharacterString>
2560
+ </gmd:organisationName>
2561
+ <gmd:role>
2562
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2563
+ </gmd:role>
2564
+ </gmd:CI_ResponsibleParty>
2565
+ </gmd:citedResponsibleParty>
2566
+ </gmd:CI_Citation>
2567
+ </gfc:source>
2568
+ </gfc:FC_DefinitionSource>
2569
+ </gfc:definitionSource>
2570
+ </gfc:FC_DefinitionReference>
2571
+ </gfc:definitionReference>
2572
+ <gfc:valueType>
2573
+ <gco:TypeName>
2574
+ <gco:aName>
2575
+ <gco:CharacterString>String</gco:CharacterString>
2576
+ </gco:aName>
2577
+ </gco:TypeName>
2578
+ </gfc:valueType>
2579
+ <gfc:listedValue>
2580
+ <gfc:FC_ListedValue>
2581
+ <gfc:label>
2582
+ <gco:CharacterString>Village, Town</gco:CharacterString>
2583
+ </gfc:label>
2584
+ <gfc:definition>
2585
+ <gco:CharacterString>Village as Rural and Town as Urban settlements</gco:CharacterString>
2586
+ </gfc:definition>
2587
+ <gfc:definitionReference>
2588
+ <gfc:FC_DefinitionReference>
2589
+ <gfc:definitionSource>
2590
+ <gfc:FC_DefinitionSource>
2591
+ <gfc:source>
2592
+ <gmd:CI_Citation>
2593
+ <gmd:title>
2594
+ <gco:CharacterString>Census of India</gco:CharacterString>
2595
+ </gmd:title>
2596
+ <gmd:date gco:nilReason="unknown"/>
2597
+ <gmd:citedResponsibleParty>
2598
+ <gmd:CI_ResponsibleParty>
2599
+ <gmd:organisationName>
2600
+ <gco:CharacterString>Census of India</gco:CharacterString>
2601
+ </gmd:organisationName>
2602
+ <gmd:role>
2603
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2604
+ </gmd:role>
2605
+ </gmd:CI_ResponsibleParty>
2606
+ </gmd:citedResponsibleParty>
2607
+ </gmd:CI_Citation>
2608
+ </gfc:source>
2609
+ </gfc:FC_DefinitionSource>
2610
+ </gfc:definitionSource>
2611
+ </gfc:FC_DefinitionReference>
2612
+ </gfc:definitionReference>
2613
+ </gfc:FC_ListedValue>
2614
+ </gfc:listedValue>
2615
+ </gfc:FC_FeatureAttribute>
2616
+ </gfc:carrierOfCharacteristics>
2617
+ <gfc:carrierOfCharacteristics>
2618
+ <gfc:FC_FeatureAttribute>
2619
+ <gfc:memberName>
2620
+ <gco:LocalName>F_MFHH</gco:LocalName>
2621
+ </gfc:memberName>
2622
+ <gfc:definition>
2623
+ <gco:CharacterString>Female Household industry workers</gco:CharacterString>
2624
+ </gfc:definition>
2625
+ <gfc:cardinality gco:nilReason="unknown"/>
2626
+ <gfc:definitionReference>
2627
+ <gfc:FC_DefinitionReference>
2628
+ <gfc:definitionSource>
2629
+ <gfc:FC_DefinitionSource>
2630
+ <gfc:source>
2631
+ <gmd:CI_Citation>
2632
+ <gmd:title>
2633
+ <gco:CharacterString>Census of India</gco:CharacterString>
2634
+ </gmd:title>
2635
+ <gmd:date gco:nilReason="unknown"/>
2636
+ <gmd:citedResponsibleParty>
2637
+ <gmd:CI_ResponsibleParty>
2638
+ <gmd:organisationName>
2639
+ <gco:CharacterString>Census of India</gco:CharacterString>
2640
+ </gmd:organisationName>
2641
+ <gmd:role>
2642
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2643
+ </gmd:role>
2644
+ </gmd:CI_ResponsibleParty>
2645
+ </gmd:citedResponsibleParty>
2646
+ </gmd:CI_Citation>
2647
+ </gfc:source>
2648
+ </gfc:FC_DefinitionSource>
2649
+ </gfc:definitionSource>
2650
+ </gfc:FC_DefinitionReference>
2651
+ </gfc:definitionReference>
2652
+ <gfc:valueType>
2653
+ <gco:TypeName>
2654
+ <gco:aName>
2655
+ <gco:CharacterString>Double</gco:CharacterString>
2656
+ </gco:aName>
2657
+ </gco:TypeName>
2658
+ </gfc:valueType>
2659
+ </gfc:FC_FeatureAttribute>
2660
+ </gfc:carrierOfCharacteristics>
2661
+ <gfc:carrierOfCharacteristics>
2662
+ <gfc:FC_FeatureAttribute>
2663
+ <gfc:memberName>
2664
+ <gco:LocalName>M_MNW</gco:LocalName>
2665
+ </gfc:memberName>
2666
+ <gfc:definition>
2667
+ <gco:CharacterString>Male Main Workers</gco:CharacterString>
2668
+ </gfc:definition>
2669
+ <gfc:cardinality gco:nilReason="unknown"/>
2670
+ <gfc:definitionReference>
2671
+ <gfc:FC_DefinitionReference>
2672
+ <gfc:definitionSource>
2673
+ <gfc:FC_DefinitionSource>
2674
+ <gfc:source>
2675
+ <gmd:CI_Citation>
2676
+ <gmd:title>
2677
+ <gco:CharacterString>Census of India</gco:CharacterString>
2678
+ </gmd:title>
2679
+ <gmd:date gco:nilReason="unknown"/>
2680
+ <gmd:citedResponsibleParty>
2681
+ <gmd:CI_ResponsibleParty>
2682
+ <gmd:organisationName>
2683
+ <gco:CharacterString>Census of India</gco:CharacterString>
2684
+ </gmd:organisationName>
2685
+ <gmd:role>
2686
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2687
+ </gmd:role>
2688
+ </gmd:CI_ResponsibleParty>
2689
+ </gmd:citedResponsibleParty>
2690
+ </gmd:CI_Citation>
2691
+ </gfc:source>
2692
+ </gfc:FC_DefinitionSource>
2693
+ </gfc:definitionSource>
2694
+ </gfc:FC_DefinitionReference>
2695
+ </gfc:definitionReference>
2696
+ <gfc:valueType>
2697
+ <gco:TypeName>
2698
+ <gco:aName>
2699
+ <gco:CharacterString>Double</gco:CharacterString>
2700
+ </gco:aName>
2701
+ </gco:TypeName>
2702
+ </gfc:valueType>
2703
+ </gfc:FC_FeatureAttribute>
2704
+ </gfc:carrierOfCharacteristics>
2705
+ <gfc:carrierOfCharacteristics>
2706
+ <gfc:FC_FeatureAttribute>
2707
+ <gfc:memberName>
2708
+ <gco:LocalName>M_ST</gco:LocalName>
2709
+ </gfc:memberName>
2710
+ <gfc:definition>
2711
+ <gco:CharacterString>Male scheduled tribe</gco:CharacterString>
2712
+ </gfc:definition>
2713
+ <gfc:cardinality gco:nilReason="unknown"/>
2714
+ <gfc:definitionReference>
2715
+ <gfc:FC_DefinitionReference>
2716
+ <gfc:definitionSource>
2717
+ <gfc:FC_DefinitionSource>
2718
+ <gfc:source>
2719
+ <gmd:CI_Citation>
2720
+ <gmd:title>
2721
+ <gco:CharacterString>Census of India</gco:CharacterString>
2722
+ </gmd:title>
2723
+ <gmd:date gco:nilReason="unknown"/>
2724
+ <gmd:citedResponsibleParty>
2725
+ <gmd:CI_ResponsibleParty>
2726
+ <gmd:organisationName>
2727
+ <gco:CharacterString>Census of India</gco:CharacterString>
2728
+ </gmd:organisationName>
2729
+ <gmd:role>
2730
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2731
+ </gmd:role>
2732
+ </gmd:CI_ResponsibleParty>
2733
+ </gmd:citedResponsibleParty>
2734
+ </gmd:CI_Citation>
2735
+ </gfc:source>
2736
+ </gfc:FC_DefinitionSource>
2737
+ </gfc:definitionSource>
2738
+ </gfc:FC_DefinitionReference>
2739
+ </gfc:definitionReference>
2740
+ <gfc:valueType>
2741
+ <gco:TypeName>
2742
+ <gco:aName>
2743
+ <gco:CharacterString>Double</gco:CharacterString>
2744
+ </gco:aName>
2745
+ </gco:TypeName>
2746
+ </gfc:valueType>
2747
+ </gfc:FC_FeatureAttribute>
2748
+ </gfc:carrierOfCharacteristics>
2749
+ <gfc:carrierOfCharacteristics>
2750
+ <gfc:FC_FeatureAttribute>
2751
+ <gfc:memberName>
2752
+ <gco:LocalName>TOT_OTH_W</gco:LocalName>
2753
+ </gfc:memberName>
2754
+ <gfc:definition>
2755
+ <gco:CharacterString>Total other workers</gco:CharacterString>
2756
+ </gfc:definition>
2757
+ <gfc:cardinality gco:nilReason="unknown"/>
2758
+ <gfc:definitionReference>
2759
+ <gfc:FC_DefinitionReference>
2760
+ <gfc:definitionSource>
2761
+ <gfc:FC_DefinitionSource>
2762
+ <gfc:source>
2763
+ <gmd:CI_Citation>
2764
+ <gmd:title>
2765
+ <gco:CharacterString>Census of India</gco:CharacterString>
2766
+ </gmd:title>
2767
+ <gmd:date gco:nilReason="unknown"/>
2768
+ <gmd:citedResponsibleParty>
2769
+ <gmd:CI_ResponsibleParty>
2770
+ <gmd:organisationName>
2771
+ <gco:CharacterString>Census of India</gco:CharacterString>
2772
+ </gmd:organisationName>
2773
+ <gmd:role>
2774
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2775
+ </gmd:role>
2776
+ </gmd:CI_ResponsibleParty>
2777
+ </gmd:citedResponsibleParty>
2778
+ </gmd:CI_Citation>
2779
+ </gfc:source>
2780
+ </gfc:FC_DefinitionSource>
2781
+ </gfc:definitionSource>
2782
+ </gfc:FC_DefinitionReference>
2783
+ </gfc:definitionReference>
2784
+ <gfc:valueType>
2785
+ <gco:TypeName>
2786
+ <gco:aName>
2787
+ <gco:CharacterString>Double</gco:CharacterString>
2788
+ </gco:aName>
2789
+ </gco:TypeName>
2790
+ </gfc:valueType>
2791
+ </gfc:FC_FeatureAttribute>
2792
+ </gfc:carrierOfCharacteristics>
2793
+ <gfc:carrierOfCharacteristics>
2794
+ <gfc:FC_FeatureAttribute>
2795
+ <gfc:memberName>
2796
+ <gco:LocalName>STATE_UT</gco:LocalName>
2797
+ </gfc:memberName>
2798
+ <gfc:definition>
2799
+ <gco:CharacterString>Name of State/Union Territory</gco:CharacterString>
2800
+ </gfc:definition>
2801
+ <gfc:cardinality gco:nilReason="unknown"/>
2802
+ <gfc:definitionReference>
2803
+ <gfc:FC_DefinitionReference>
2804
+ <gfc:definitionSource>
2805
+ <gfc:FC_DefinitionSource>
2806
+ <gfc:source>
2807
+ <gmd:CI_Citation>
2808
+ <gmd:title>
2809
+ <gco:CharacterString>Census of India</gco:CharacterString>
2810
+ </gmd:title>
2811
+ <gmd:date gco:nilReason="unknown"/>
2812
+ <gmd:citedResponsibleParty>
2813
+ <gmd:CI_ResponsibleParty>
2814
+ <gmd:organisationName>
2815
+ <gco:CharacterString>Census of India</gco:CharacterString>
2816
+ </gmd:organisationName>
2817
+ <gmd:role>
2818
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2819
+ </gmd:role>
2820
+ </gmd:CI_ResponsibleParty>
2821
+ </gmd:citedResponsibleParty>
2822
+ </gmd:CI_Citation>
2823
+ </gfc:source>
2824
+ </gfc:FC_DefinitionSource>
2825
+ </gfc:definitionSource>
2826
+ </gfc:FC_DefinitionReference>
2827
+ </gfc:definitionReference>
2828
+ <gfc:valueType>
2829
+ <gco:TypeName>
2830
+ <gco:aName>
2831
+ <gco:CharacterString>String</gco:CharacterString>
2832
+ </gco:aName>
2833
+ </gco:TypeName>
2834
+ </gfc:valueType>
2835
+ <gfc:listedValue>
2836
+ <gfc:FC_ListedValue>
2837
+ <gfc:label>
2838
+ <gco:CharacterString>State/Union Territory</gco:CharacterString>
2839
+ </gfc:label>
2840
+ <gfc:definition>
2841
+ <gco:CharacterString>State/Union Territory Name</gco:CharacterString>
2842
+ </gfc:definition>
2843
+ <gfc:definitionReference>
2844
+ <gfc:FC_DefinitionReference>
2845
+ <gfc:definitionSource>
2846
+ <gfc:FC_DefinitionSource>
2847
+ <gfc:source>
2848
+ <gmd:CI_Citation>
2849
+ <gmd:title>
2850
+ <gco:CharacterString>Census of India</gco:CharacterString>
2851
+ </gmd:title>
2852
+ <gmd:date gco:nilReason="unknown"/>
2853
+ <gmd:citedResponsibleParty>
2854
+ <gmd:CI_ResponsibleParty>
2855
+ <gmd:organisationName>
2856
+ <gco:CharacterString>Census of India</gco:CharacterString>
2857
+ </gmd:organisationName>
2858
+ <gmd:role>
2859
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2860
+ </gmd:role>
2861
+ </gmd:CI_ResponsibleParty>
2862
+ </gmd:citedResponsibleParty>
2863
+ </gmd:CI_Citation>
2864
+ </gfc:source>
2865
+ </gfc:FC_DefinitionSource>
2866
+ </gfc:definitionSource>
2867
+ </gfc:FC_DefinitionReference>
2868
+ </gfc:definitionReference>
2869
+ </gfc:FC_ListedValue>
2870
+ </gfc:listedValue>
2871
+ </gfc:FC_FeatureAttribute>
2872
+ </gfc:carrierOfCharacteristics>
2873
+ <gfc:carrierOfCharacteristics>
2874
+ <gfc:FC_FeatureAttribute>
2875
+ <gfc:memberName>
2876
+ <gco:LocalName>M_OTH_W</gco:LocalName>
2877
+ </gfc:memberName>
2878
+ <gfc:definition>
2879
+ <gco:CharacterString>Male other workers</gco:CharacterString>
2880
+ </gfc:definition>
2881
+ <gfc:cardinality gco:nilReason="unknown"/>
2882
+ <gfc:definitionReference>
2883
+ <gfc:FC_DefinitionReference>
2884
+ <gfc:definitionSource>
2885
+ <gfc:FC_DefinitionSource>
2886
+ <gfc:source>
2887
+ <gmd:CI_Citation>
2888
+ <gmd:title>
2889
+ <gco:CharacterString>Census of India</gco:CharacterString>
2890
+ </gmd:title>
2891
+ <gmd:date gco:nilReason="unknown"/>
2892
+ <gmd:citedResponsibleParty>
2893
+ <gmd:CI_ResponsibleParty>
2894
+ <gmd:organisationName>
2895
+ <gco:CharacterString>Census of India</gco:CharacterString>
2896
+ </gmd:organisationName>
2897
+ <gmd:role>
2898
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2899
+ </gmd:role>
2900
+ </gmd:CI_ResponsibleParty>
2901
+ </gmd:citedResponsibleParty>
2902
+ </gmd:CI_Citation>
2903
+ </gfc:source>
2904
+ </gfc:FC_DefinitionSource>
2905
+ </gfc:definitionSource>
2906
+ </gfc:FC_DefinitionReference>
2907
+ </gfc:definitionReference>
2908
+ <gfc:valueType>
2909
+ <gco:TypeName>
2910
+ <gco:aName>
2911
+ <gco:CharacterString>Double</gco:CharacterString>
2912
+ </gco:aName>
2913
+ </gco:TypeName>
2914
+ </gfc:valueType>
2915
+ </gfc:FC_FeatureAttribute>
2916
+ </gfc:carrierOfCharacteristics>
2917
+ <gfc:carrierOfCharacteristics>
2918
+ <gfc:FC_FeatureAttribute>
2919
+ <gfc:memberName>
2920
+ <gco:LocalName>M_SC</gco:LocalName>
2921
+ </gfc:memberName>
2922
+ <gfc:definition>
2923
+ <gco:CharacterString>Male scheduled caste</gco:CharacterString>
2924
+ </gfc:definition>
2925
+ <gfc:cardinality gco:nilReason="unknown"/>
2926
+ <gfc:definitionReference>
2927
+ <gfc:FC_DefinitionReference>
2928
+ <gfc:definitionSource>
2929
+ <gfc:FC_DefinitionSource>
2930
+ <gfc:source>
2931
+ <gmd:CI_Citation>
2932
+ <gmd:title>
2933
+ <gco:CharacterString>Census of India</gco:CharacterString>
2934
+ </gmd:title>
2935
+ <gmd:date gco:nilReason="unknown"/>
2936
+ <gmd:citedResponsibleParty>
2937
+ <gmd:CI_ResponsibleParty>
2938
+ <gmd:organisationName>
2939
+ <gco:CharacterString>Census of India</gco:CharacterString>
2940
+ </gmd:organisationName>
2941
+ <gmd:role>
2942
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2943
+ </gmd:role>
2944
+ </gmd:CI_ResponsibleParty>
2945
+ </gmd:citedResponsibleParty>
2946
+ </gmd:CI_Citation>
2947
+ </gfc:source>
2948
+ </gfc:FC_DefinitionSource>
2949
+ </gfc:definitionSource>
2950
+ </gfc:FC_DefinitionReference>
2951
+ </gfc:definitionReference>
2952
+ <gfc:valueType>
2953
+ <gco:TypeName>
2954
+ <gco:aName>
2955
+ <gco:CharacterString>Double</gco:CharacterString>
2956
+ </gco:aName>
2957
+ </gco:TypeName>
2958
+ </gfc:valueType>
2959
+ </gfc:FC_FeatureAttribute>
2960
+ </gfc:carrierOfCharacteristics>
2961
+ <gfc:carrierOfCharacteristics>
2962
+ <gfc:FC_FeatureAttribute>
2963
+ <gfc:memberName>
2964
+ <gco:LocalName>F_CULT</gco:LocalName>
2965
+ </gfc:memberName>
2966
+ <gfc:definition>
2967
+ <gco:CharacterString>Female Cultivators</gco:CharacterString>
2968
+ </gfc:definition>
2969
+ <gfc:cardinality gco:nilReason="unknown"/>
2970
+ <gfc:definitionReference>
2971
+ <gfc:FC_DefinitionReference>
2972
+ <gfc:definitionSource>
2973
+ <gfc:FC_DefinitionSource>
2974
+ <gfc:source>
2975
+ <gmd:CI_Citation>
2976
+ <gmd:title>
2977
+ <gco:CharacterString>Census of India</gco:CharacterString>
2978
+ </gmd:title>
2979
+ <gmd:date gco:nilReason="unknown"/>
2980
+ <gmd:citedResponsibleParty>
2981
+ <gmd:CI_ResponsibleParty>
2982
+ <gmd:organisationName>
2983
+ <gco:CharacterString>Census of India</gco:CharacterString>
2984
+ </gmd:organisationName>
2985
+ <gmd:role>
2986
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
2987
+ </gmd:role>
2988
+ </gmd:CI_ResponsibleParty>
2989
+ </gmd:citedResponsibleParty>
2990
+ </gmd:CI_Citation>
2991
+ </gfc:source>
2992
+ </gfc:FC_DefinitionSource>
2993
+ </gfc:definitionSource>
2994
+ </gfc:FC_DefinitionReference>
2995
+ </gfc:definitionReference>
2996
+ <gfc:valueType>
2997
+ <gco:TypeName>
2998
+ <gco:aName>
2999
+ <gco:CharacterString>Double</gco:CharacterString>
3000
+ </gco:aName>
3001
+ </gco:TypeName>
3002
+ </gfc:valueType>
3003
+ </gfc:FC_FeatureAttribute>
3004
+ </gfc:carrierOfCharacteristics>
3005
+ <gfc:carrierOfCharacteristics>
3006
+ <gfc:FC_FeatureAttribute>
3007
+ <gfc:memberName>
3008
+ <gco:LocalName>M_AGLB</gco:LocalName>
3009
+ </gfc:memberName>
3010
+ <gfc:definition>
3011
+ <gco:CharacterString>Male Agricultural Labourers</gco:CharacterString>
3012
+ </gfc:definition>
3013
+ <gfc:cardinality gco:nilReason="unknown"/>
3014
+ <gfc:definitionReference>
3015
+ <gfc:FC_DefinitionReference>
3016
+ <gfc:definitionSource>
3017
+ <gfc:FC_DefinitionSource>
3018
+ <gfc:source>
3019
+ <gmd:CI_Citation>
3020
+ <gmd:title>
3021
+ <gco:CharacterString>Census of India</gco:CharacterString>
3022
+ </gmd:title>
3023
+ <gmd:date gco:nilReason="unknown"/>
3024
+ <gmd:citedResponsibleParty>
3025
+ <gmd:CI_ResponsibleParty>
3026
+ <gmd:organisationName>
3027
+ <gco:CharacterString>Census of India</gco:CharacterString>
3028
+ </gmd:organisationName>
3029
+ <gmd:role>
3030
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3031
+ </gmd:role>
3032
+ </gmd:CI_ResponsibleParty>
3033
+ </gmd:citedResponsibleParty>
3034
+ </gmd:CI_Citation>
3035
+ </gfc:source>
3036
+ </gfc:FC_DefinitionSource>
3037
+ </gfc:definitionSource>
3038
+ </gfc:FC_DefinitionReference>
3039
+ </gfc:definitionReference>
3040
+ <gfc:valueType>
3041
+ <gco:TypeName>
3042
+ <gco:aName>
3043
+ <gco:CharacterString>Double</gco:CharacterString>
3044
+ </gco:aName>
3045
+ </gco:TypeName>
3046
+ </gfc:valueType>
3047
+ </gfc:FC_FeatureAttribute>
3048
+ </gfc:carrierOfCharacteristics>
3049
+ <gfc:carrierOfCharacteristics>
3050
+ <gfc:FC_FeatureAttribute>
3051
+ <gfc:memberName>
3052
+ <gco:LocalName>VILLAGE_ID</gco:LocalName>
3053
+ </gfc:memberName>
3054
+ <gfc:definition>
3055
+ <gco:CharacterString>Unique identification number</gco:CharacterString>
3056
+ </gfc:definition>
3057
+ <gfc:cardinality gco:nilReason="unknown"/>
3058
+ <gfc:definitionReference>
3059
+ <gfc:FC_DefinitionReference>
3060
+ <gfc:definitionSource>
3061
+ <gfc:FC_DefinitionSource>
3062
+ <gfc:source>
3063
+ <gmd:CI_Citation>
3064
+ <gmd:title>
3065
+ <gco:CharacterString>ML Infomap</gco:CharacterString>
3066
+ </gmd:title>
3067
+ <gmd:date gco:nilReason="unknown"/>
3068
+ <gmd:citedResponsibleParty>
3069
+ <gmd:CI_ResponsibleParty>
3070
+ <gmd:organisationName>
3071
+ <gco:CharacterString>ML Infomap</gco:CharacterString>
3072
+ </gmd:organisationName>
3073
+ <gmd:role>
3074
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3075
+ </gmd:role>
3076
+ </gmd:CI_ResponsibleParty>
3077
+ </gmd:citedResponsibleParty>
3078
+ </gmd:CI_Citation>
3079
+ </gfc:source>
3080
+ </gfc:FC_DefinitionSource>
3081
+ </gfc:definitionSource>
3082
+ </gfc:FC_DefinitionReference>
3083
+ </gfc:definitionReference>
3084
+ <gfc:valueType>
3085
+ <gco:TypeName>
3086
+ <gco:aName>
3087
+ <gco:CharacterString>Double</gco:CharacterString>
3088
+ </gco:aName>
3089
+ </gco:TypeName>
3090
+ </gfc:valueType>
3091
+ </gfc:FC_FeatureAttribute>
3092
+ </gfc:carrierOfCharacteristics>
3093
+ <gfc:carrierOfCharacteristics>
3094
+ <gfc:FC_FeatureAttribute>
3095
+ <gfc:memberName>
3096
+ <gco:LocalName>M_ILLT</gco:LocalName>
3097
+ </gfc:memberName>
3098
+ <gfc:definition>
3099
+ <gco:CharacterString>Male Illiterates</gco:CharacterString>
3100
+ </gfc:definition>
3101
+ <gfc:cardinality gco:nilReason="unknown"/>
3102
+ <gfc:definitionReference>
3103
+ <gfc:FC_DefinitionReference>
3104
+ <gfc:definitionSource>
3105
+ <gfc:FC_DefinitionSource>
3106
+ <gfc:source>
3107
+ <gmd:CI_Citation>
3108
+ <gmd:title>
3109
+ <gco:CharacterString>Census of India</gco:CharacterString>
3110
+ </gmd:title>
3111
+ <gmd:date gco:nilReason="unknown"/>
3112
+ <gmd:citedResponsibleParty>
3113
+ <gmd:CI_ResponsibleParty>
3114
+ <gmd:organisationName>
3115
+ <gco:CharacterString>Census of India</gco:CharacterString>
3116
+ </gmd:organisationName>
3117
+ <gmd:role>
3118
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3119
+ </gmd:role>
3120
+ </gmd:CI_ResponsibleParty>
3121
+ </gmd:citedResponsibleParty>
3122
+ </gmd:CI_Citation>
3123
+ </gfc:source>
3124
+ </gfc:FC_DefinitionSource>
3125
+ </gfc:definitionSource>
3126
+ </gfc:FC_DefinitionReference>
3127
+ </gfc:definitionReference>
3128
+ <gfc:valueType>
3129
+ <gco:TypeName>
3130
+ <gco:aName>
3131
+ <gco:CharacterString>Double</gco:CharacterString>
3132
+ </gco:aName>
3133
+ </gco:TypeName>
3134
+ </gfc:valueType>
3135
+ </gfc:FC_FeatureAttribute>
3136
+ </gfc:carrierOfCharacteristics>
3137
+ <gfc:carrierOfCharacteristics>
3138
+ <gfc:FC_FeatureAttribute>
3139
+ <gfc:memberName>
3140
+ <gco:LocalName>M_MRW</gco:LocalName>
3141
+ </gfc:memberName>
3142
+ <gfc:definition>
3143
+ <gco:CharacterString>Male Marginal workers other workers</gco:CharacterString>
3144
+ </gfc:definition>
3145
+ <gfc:cardinality gco:nilReason="unknown"/>
3146
+ <gfc:definitionReference>
3147
+ <gfc:FC_DefinitionReference>
3148
+ <gfc:definitionSource>
3149
+ <gfc:FC_DefinitionSource>
3150
+ <gfc:source>
3151
+ <gmd:CI_Citation>
3152
+ <gmd:title>
3153
+ <gco:CharacterString>Census of India</gco:CharacterString>
3154
+ </gmd:title>
3155
+ <gmd:date gco:nilReason="unknown"/>
3156
+ <gmd:citedResponsibleParty>
3157
+ <gmd:CI_ResponsibleParty>
3158
+ <gmd:organisationName>
3159
+ <gco:CharacterString>Census of India</gco:CharacterString>
3160
+ </gmd:organisationName>
3161
+ <gmd:role>
3162
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3163
+ </gmd:role>
3164
+ </gmd:CI_ResponsibleParty>
3165
+ </gmd:citedResponsibleParty>
3166
+ </gmd:CI_Citation>
3167
+ </gfc:source>
3168
+ </gfc:FC_DefinitionSource>
3169
+ </gfc:definitionSource>
3170
+ </gfc:FC_DefinitionReference>
3171
+ </gfc:definitionReference>
3172
+ <gfc:valueType>
3173
+ <gco:TypeName>
3174
+ <gco:aName>
3175
+ <gco:CharacterString>Double</gco:CharacterString>
3176
+ </gco:aName>
3177
+ </gco:TypeName>
3178
+ </gfc:valueType>
3179
+ </gfc:FC_FeatureAttribute>
3180
+ </gfc:carrierOfCharacteristics>
3181
+ <gfc:carrierOfCharacteristics>
3182
+ <gfc:FC_FeatureAttribute>
3183
+ <gfc:memberName>
3184
+ <gco:LocalName>M_LIT</gco:LocalName>
3185
+ </gfc:memberName>
3186
+ <gfc:definition>
3187
+ <gco:CharacterString>Male literates</gco:CharacterString>
3188
+ </gfc:definition>
3189
+ <gfc:cardinality gco:nilReason="unknown"/>
3190
+ <gfc:definitionReference>
3191
+ <gfc:FC_DefinitionReference>
3192
+ <gfc:definitionSource>
3193
+ <gfc:FC_DefinitionSource>
3194
+ <gfc:source>
3195
+ <gmd:CI_Citation>
3196
+ <gmd:title>
3197
+ <gco:CharacterString>Census of India</gco:CharacterString>
3198
+ </gmd:title>
3199
+ <gmd:date gco:nilReason="unknown"/>
3200
+ <gmd:citedResponsibleParty>
3201
+ <gmd:CI_ResponsibleParty>
3202
+ <gmd:organisationName>
3203
+ <gco:CharacterString>Census of India</gco:CharacterString>
3204
+ </gmd:organisationName>
3205
+ <gmd:role>
3206
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3207
+ </gmd:role>
3208
+ </gmd:CI_ResponsibleParty>
3209
+ </gmd:citedResponsibleParty>
3210
+ </gmd:CI_Citation>
3211
+ </gfc:source>
3212
+ </gfc:FC_DefinitionSource>
3213
+ </gfc:definitionSource>
3214
+ </gfc:FC_DefinitionReference>
3215
+ </gfc:definitionReference>
3216
+ <gfc:valueType>
3217
+ <gco:TypeName>
3218
+ <gco:aName>
3219
+ <gco:CharacterString>Double</gco:CharacterString>
3220
+ </gco:aName>
3221
+ </gco:TypeName>
3222
+ </gfc:valueType>
3223
+ </gfc:FC_FeatureAttribute>
3224
+ </gfc:carrierOfCharacteristics>
3225
+ <gfc:carrierOfCharacteristics>
3226
+ <gfc:FC_FeatureAttribute>
3227
+ <gfc:memberName>
3228
+ <gco:LocalName>M_MRG_CULT</gco:LocalName>
3229
+ </gfc:memberName>
3230
+ <gfc:definition>
3231
+ <gco:CharacterString>Male Marginal workers as cultivators</gco:CharacterString>
3232
+ </gfc:definition>
3233
+ <gfc:cardinality gco:nilReason="unknown"/>
3234
+ <gfc:definitionReference>
3235
+ <gfc:FC_DefinitionReference>
3236
+ <gfc:definitionSource>
3237
+ <gfc:FC_DefinitionSource>
3238
+ <gfc:source>
3239
+ <gmd:CI_Citation>
3240
+ <gmd:title>
3241
+ <gco:CharacterString>Census of India</gco:CharacterString>
3242
+ </gmd:title>
3243
+ <gmd:date gco:nilReason="unknown"/>
3244
+ <gmd:citedResponsibleParty>
3245
+ <gmd:CI_ResponsibleParty>
3246
+ <gmd:organisationName>
3247
+ <gco:CharacterString>Census of India</gco:CharacterString>
3248
+ </gmd:organisationName>
3249
+ <gmd:role>
3250
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3251
+ </gmd:role>
3252
+ </gmd:CI_ResponsibleParty>
3253
+ </gmd:citedResponsibleParty>
3254
+ </gmd:CI_Citation>
3255
+ </gfc:source>
3256
+ </gfc:FC_DefinitionSource>
3257
+ </gfc:definitionSource>
3258
+ </gfc:FC_DefinitionReference>
3259
+ </gfc:definitionReference>
3260
+ <gfc:valueType>
3261
+ <gco:TypeName>
3262
+ <gco:aName>
3263
+ <gco:CharacterString>Double</gco:CharacterString>
3264
+ </gco:aName>
3265
+ </gco:TypeName>
3266
+ </gfc:valueType>
3267
+ </gfc:FC_FeatureAttribute>
3268
+ </gfc:carrierOfCharacteristics>
3269
+ <gfc:carrierOfCharacteristics>
3270
+ <gfc:FC_FeatureAttribute>
3271
+ <gfc:memberName>
3272
+ <gco:LocalName>M_L6</gco:LocalName>
3273
+ </gfc:memberName>
3274
+ <gfc:definition>
3275
+ <gco:CharacterString>Male population below 6 years</gco:CharacterString>
3276
+ </gfc:definition>
3277
+ <gfc:cardinality gco:nilReason="unknown"/>
3278
+ <gfc:definitionReference>
3279
+ <gfc:FC_DefinitionReference>
3280
+ <gfc:definitionSource>
3281
+ <gfc:FC_DefinitionSource>
3282
+ <gfc:source>
3283
+ <gmd:CI_Citation>
3284
+ <gmd:title>
3285
+ <gco:CharacterString>Census of India</gco:CharacterString>
3286
+ </gmd:title>
3287
+ <gmd:date gco:nilReason="unknown"/>
3288
+ <gmd:citedResponsibleParty>
3289
+ <gmd:CI_ResponsibleParty>
3290
+ <gmd:organisationName>
3291
+ <gco:CharacterString>Census of India</gco:CharacterString>
3292
+ </gmd:organisationName>
3293
+ <gmd:role>
3294
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3295
+ </gmd:role>
3296
+ </gmd:CI_ResponsibleParty>
3297
+ </gmd:citedResponsibleParty>
3298
+ </gmd:CI_Citation>
3299
+ </gfc:source>
3300
+ </gfc:FC_DefinitionSource>
3301
+ </gfc:definitionSource>
3302
+ </gfc:FC_DefinitionReference>
3303
+ </gfc:definitionReference>
3304
+ <gfc:valueType>
3305
+ <gco:TypeName>
3306
+ <gco:aName>
3307
+ <gco:CharacterString>Double</gco:CharacterString>
3308
+ </gco:aName>
3309
+ </gco:TypeName>
3310
+ </gfc:valueType>
3311
+ </gfc:FC_FeatureAttribute>
3312
+ </gfc:carrierOfCharacteristics>
3313
+ <gfc:carrierOfCharacteristics>
3314
+ <gfc:FC_FeatureAttribute>
3315
+ <gfc:memberName>
3316
+ <gco:LocalName>C_CODE01</gco:LocalName>
3317
+ </gfc:memberName>
3318
+ <gfc:definition>
3319
+ <gco:CharacterString>Census code of village in 2001</gco:CharacterString>
3320
+ </gfc:definition>
3321
+ <gfc:cardinality gco:nilReason="unknown"/>
3322
+ <gfc:definitionReference>
3323
+ <gfc:FC_DefinitionReference>
3324
+ <gfc:definitionSource>
3325
+ <gfc:FC_DefinitionSource>
3326
+ <gfc:source>
3327
+ <gmd:CI_Citation>
3328
+ <gmd:title>
3329
+ <gco:CharacterString>Census of India</gco:CharacterString>
3330
+ </gmd:title>
3331
+ <gmd:date gco:nilReason="unknown"/>
3332
+ <gmd:citedResponsibleParty>
3333
+ <gmd:CI_ResponsibleParty>
3334
+ <gmd:organisationName>
3335
+ <gco:CharacterString>Census of India</gco:CharacterString>
3336
+ </gmd:organisationName>
3337
+ <gmd:role>
3338
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3339
+ </gmd:role>
3340
+ </gmd:CI_ResponsibleParty>
3341
+ </gmd:citedResponsibleParty>
3342
+ </gmd:CI_Citation>
3343
+ </gfc:source>
3344
+ </gfc:FC_DefinitionSource>
3345
+ </gfc:definitionSource>
3346
+ </gfc:FC_DefinitionReference>
3347
+ </gfc:definitionReference>
3348
+ <gfc:valueType>
3349
+ <gco:TypeName>
3350
+ <gco:aName>
3351
+ <gco:CharacterString>String</gco:CharacterString>
3352
+ </gco:aName>
3353
+ </gco:TypeName>
3354
+ </gfc:valueType>
3355
+ <gfc:listedValue>
3356
+ <gfc:FC_ListedValue>
3357
+ <gfc:label>
3358
+ <gco:CharacterString>Census Code</gco:CharacterString>
3359
+ </gfc:label>
3360
+ <gfc:definition>
3361
+ <gco:CharacterString>Census Code of village</gco:CharacterString>
3362
+ </gfc:definition>
3363
+ <gfc:definitionReference>
3364
+ <gfc:FC_DefinitionReference>
3365
+ <gfc:definitionSource>
3366
+ <gfc:FC_DefinitionSource>
3367
+ <gfc:source>
3368
+ <gmd:CI_Citation>
3369
+ <gmd:title>
3370
+ <gco:CharacterString>Census of India</gco:CharacterString>
3371
+ </gmd:title>
3372
+ <gmd:date gco:nilReason="unknown"/>
3373
+ <gmd:citedResponsibleParty>
3374
+ <gmd:CI_ResponsibleParty>
3375
+ <gmd:organisationName>
3376
+ <gco:CharacterString>Census of India</gco:CharacterString>
3377
+ </gmd:organisationName>
3378
+ <gmd:role>
3379
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3380
+ </gmd:role>
3381
+ </gmd:CI_ResponsibleParty>
3382
+ </gmd:citedResponsibleParty>
3383
+ </gmd:CI_Citation>
3384
+ </gfc:source>
3385
+ </gfc:FC_DefinitionSource>
3386
+ </gfc:definitionSource>
3387
+ </gfc:FC_DefinitionReference>
3388
+ </gfc:definitionReference>
3389
+ </gfc:FC_ListedValue>
3390
+ </gfc:listedValue>
3391
+ </gfc:FC_FeatureAttribute>
3392
+ </gfc:carrierOfCharacteristics>
3393
+ <gfc:carrierOfCharacteristics>
3394
+ <gfc:FC_FeatureAttribute>
3395
+ <gfc:memberName>
3396
+ <gco:LocalName>SUB_DISTRI</gco:LocalName>
3397
+ </gfc:memberName>
3398
+ <gfc:definition>
3399
+ <gco:CharacterString>Name of Sub District</gco:CharacterString>
3400
+ </gfc:definition>
3401
+ <gfc:cardinality gco:nilReason="unknown"/>
3402
+ <gfc:definitionReference>
3403
+ <gfc:FC_DefinitionReference>
3404
+ <gfc:definitionSource>
3405
+ <gfc:FC_DefinitionSource>
3406
+ <gfc:source>
3407
+ <gmd:CI_Citation>
3408
+ <gmd:title>
3409
+ <gco:CharacterString>Census of India</gco:CharacterString>
3410
+ </gmd:title>
3411
+ <gmd:date gco:nilReason="unknown"/>
3412
+ <gmd:citedResponsibleParty>
3413
+ <gmd:CI_ResponsibleParty>
3414
+ <gmd:organisationName>
3415
+ <gco:CharacterString>Census of India</gco:CharacterString>
3416
+ </gmd:organisationName>
3417
+ <gmd:role>
3418
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3419
+ </gmd:role>
3420
+ </gmd:CI_ResponsibleParty>
3421
+ </gmd:citedResponsibleParty>
3422
+ </gmd:CI_Citation>
3423
+ </gfc:source>
3424
+ </gfc:FC_DefinitionSource>
3425
+ </gfc:definitionSource>
3426
+ </gfc:FC_DefinitionReference>
3427
+ </gfc:definitionReference>
3428
+ <gfc:valueType>
3429
+ <gco:TypeName>
3430
+ <gco:aName>
3431
+ <gco:CharacterString>String</gco:CharacterString>
3432
+ </gco:aName>
3433
+ </gco:TypeName>
3434
+ </gfc:valueType>
3435
+ <gfc:listedValue>
3436
+ <gfc:FC_ListedValue>
3437
+ <gfc:label>
3438
+ <gco:CharacterString>Sub District</gco:CharacterString>
3439
+ </gfc:label>
3440
+ <gfc:definition>
3441
+ <gco:CharacterString>Sub District Names</gco:CharacterString>
3442
+ </gfc:definition>
3443
+ <gfc:definitionReference>
3444
+ <gfc:FC_DefinitionReference>
3445
+ <gfc:definitionSource>
3446
+ <gfc:FC_DefinitionSource>
3447
+ <gfc:source>
3448
+ <gmd:CI_Citation>
3449
+ <gmd:title>
3450
+ <gco:CharacterString>Census of India</gco:CharacterString>
3451
+ </gmd:title>
3452
+ <gmd:date gco:nilReason="unknown"/>
3453
+ <gmd:citedResponsibleParty>
3454
+ <gmd:CI_ResponsibleParty>
3455
+ <gmd:organisationName>
3456
+ <gco:CharacterString>Census of India</gco:CharacterString>
3457
+ </gmd:organisationName>
3458
+ <gmd:role>
3459
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3460
+ </gmd:role>
3461
+ </gmd:CI_ResponsibleParty>
3462
+ </gmd:citedResponsibleParty>
3463
+ </gmd:CI_Citation>
3464
+ </gfc:source>
3465
+ </gfc:FC_DefinitionSource>
3466
+ </gfc:definitionSource>
3467
+ </gfc:FC_DefinitionReference>
3468
+ </gfc:definitionReference>
3469
+ </gfc:FC_ListedValue>
3470
+ </gfc:listedValue>
3471
+ </gfc:FC_FeatureAttribute>
3472
+ </gfc:carrierOfCharacteristics>
3473
+ <gfc:carrierOfCharacteristics>
3474
+ <gfc:FC_FeatureAttribute>
3475
+ <gfc:memberName>
3476
+ <gco:LocalName>F_ST</gco:LocalName>
3477
+ </gfc:memberName>
3478
+ <gfc:definition>
3479
+ <gco:CharacterString>Female scheduled tribe</gco:CharacterString>
3480
+ </gfc:definition>
3481
+ <gfc:cardinality gco:nilReason="unknown"/>
3482
+ <gfc:definitionReference>
3483
+ <gfc:FC_DefinitionReference>
3484
+ <gfc:definitionSource>
3485
+ <gfc:FC_DefinitionSource>
3486
+ <gfc:source>
3487
+ <gmd:CI_Citation>
3488
+ <gmd:title>
3489
+ <gco:CharacterString>Census of India</gco:CharacterString>
3490
+ </gmd:title>
3491
+ <gmd:date gco:nilReason="unknown"/>
3492
+ <gmd:citedResponsibleParty>
3493
+ <gmd:CI_ResponsibleParty>
3494
+ <gmd:organisationName>
3495
+ <gco:CharacterString>Census of India</gco:CharacterString>
3496
+ </gmd:organisationName>
3497
+ <gmd:role>
3498
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3499
+ </gmd:role>
3500
+ </gmd:CI_ResponsibleParty>
3501
+ </gmd:citedResponsibleParty>
3502
+ </gmd:CI_Citation>
3503
+ </gfc:source>
3504
+ </gfc:FC_DefinitionSource>
3505
+ </gfc:definitionSource>
3506
+ </gfc:FC_DefinitionReference>
3507
+ </gfc:definitionReference>
3508
+ <gfc:valueType>
3509
+ <gco:TypeName>
3510
+ <gco:aName>
3511
+ <gco:CharacterString>Double</gco:CharacterString>
3512
+ </gco:aName>
3513
+ </gco:TypeName>
3514
+ </gfc:valueType>
3515
+ </gfc:FC_FeatureAttribute>
3516
+ </gfc:carrierOfCharacteristics>
3517
+ <gfc:carrierOfCharacteristics>
3518
+ <gfc:FC_FeatureAttribute>
3519
+ <gfc:memberName>
3520
+ <gco:LocalName>F_L6</gco:LocalName>
3521
+ </gfc:memberName>
3522
+ <gfc:definition>
3523
+ <gco:CharacterString>Female population below 6 years</gco:CharacterString>
3524
+ </gfc:definition>
3525
+ <gfc:cardinality gco:nilReason="unknown"/>
3526
+ <gfc:definitionReference>
3527
+ <gfc:FC_DefinitionReference>
3528
+ <gfc:definitionSource>
3529
+ <gfc:FC_DefinitionSource>
3530
+ <gfc:source>
3531
+ <gmd:CI_Citation>
3532
+ <gmd:title>
3533
+ <gco:CharacterString>Census of India</gco:CharacterString>
3534
+ </gmd:title>
3535
+ <gmd:date gco:nilReason="unknown"/>
3536
+ <gmd:citedResponsibleParty>
3537
+ <gmd:CI_ResponsibleParty>
3538
+ <gmd:organisationName>
3539
+ <gco:CharacterString>Census of India</gco:CharacterString>
3540
+ </gmd:organisationName>
3541
+ <gmd:role>
3542
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3543
+ </gmd:role>
3544
+ </gmd:CI_ResponsibleParty>
3545
+ </gmd:citedResponsibleParty>
3546
+ </gmd:CI_Citation>
3547
+ </gfc:source>
3548
+ </gfc:FC_DefinitionSource>
3549
+ </gfc:definitionSource>
3550
+ </gfc:FC_DefinitionReference>
3551
+ </gfc:definitionReference>
3552
+ <gfc:valueType>
3553
+ <gco:TypeName>
3554
+ <gco:aName>
3555
+ <gco:CharacterString>Double</gco:CharacterString>
3556
+ </gco:aName>
3557
+ </gco:TypeName>
3558
+ </gfc:valueType>
3559
+ </gfc:FC_FeatureAttribute>
3560
+ </gfc:carrierOfCharacteristics>
3561
+ <gfc:carrierOfCharacteristics>
3562
+ <gfc:FC_FeatureAttribute>
3563
+ <gfc:memberName>
3564
+ <gco:LocalName>DISTRICT</gco:LocalName>
3565
+ </gfc:memberName>
3566
+ <gfc:definition>
3567
+ <gco:CharacterString>Name of District</gco:CharacterString>
3568
+ </gfc:definition>
3569
+ <gfc:cardinality gco:nilReason="unknown"/>
3570
+ <gfc:definitionReference>
3571
+ <gfc:FC_DefinitionReference>
3572
+ <gfc:definitionSource>
3573
+ <gfc:FC_DefinitionSource>
3574
+ <gfc:source>
3575
+ <gmd:CI_Citation>
3576
+ <gmd:title>
3577
+ <gco:CharacterString>Census of India</gco:CharacterString>
3578
+ </gmd:title>
3579
+ <gmd:date gco:nilReason="unknown"/>
3580
+ <gmd:citedResponsibleParty>
3581
+ <gmd:CI_ResponsibleParty>
3582
+ <gmd:organisationName>
3583
+ <gco:CharacterString>Census of India</gco:CharacterString>
3584
+ </gmd:organisationName>
3585
+ <gmd:role>
3586
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3587
+ </gmd:role>
3588
+ </gmd:CI_ResponsibleParty>
3589
+ </gmd:citedResponsibleParty>
3590
+ </gmd:CI_Citation>
3591
+ </gfc:source>
3592
+ </gfc:FC_DefinitionSource>
3593
+ </gfc:definitionSource>
3594
+ </gfc:FC_DefinitionReference>
3595
+ </gfc:definitionReference>
3596
+ <gfc:valueType>
3597
+ <gco:TypeName>
3598
+ <gco:aName>
3599
+ <gco:CharacterString>String</gco:CharacterString>
3600
+ </gco:aName>
3601
+ </gco:TypeName>
3602
+ </gfc:valueType>
3603
+ <gfc:listedValue>
3604
+ <gfc:FC_ListedValue>
3605
+ <gfc:label>
3606
+ <gco:CharacterString>District</gco:CharacterString>
3607
+ </gfc:label>
3608
+ <gfc:definition>
3609
+ <gco:CharacterString>District Names</gco:CharacterString>
3610
+ </gfc:definition>
3611
+ <gfc:definitionReference>
3612
+ <gfc:FC_DefinitionReference>
3613
+ <gfc:definitionSource>
3614
+ <gfc:FC_DefinitionSource>
3615
+ <gfc:source>
3616
+ <gmd:CI_Citation>
3617
+ <gmd:title>
3618
+ <gco:CharacterString>Census of India</gco:CharacterString>
3619
+ </gmd:title>
3620
+ <gmd:date gco:nilReason="unknown"/>
3621
+ <gmd:citedResponsibleParty>
3622
+ <gmd:CI_ResponsibleParty>
3623
+ <gmd:organisationName>
3624
+ <gco:CharacterString>Census of India</gco:CharacterString>
3625
+ </gmd:organisationName>
3626
+ <gmd:role>
3627
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3628
+ </gmd:role>
3629
+ </gmd:CI_ResponsibleParty>
3630
+ </gmd:citedResponsibleParty>
3631
+ </gmd:CI_Citation>
3632
+ </gfc:source>
3633
+ </gfc:FC_DefinitionSource>
3634
+ </gfc:definitionSource>
3635
+ </gfc:FC_DefinitionReference>
3636
+ </gfc:definitionReference>
3637
+ </gfc:FC_ListedValue>
3638
+ </gfc:listedValue>
3639
+ </gfc:FC_FeatureAttribute>
3640
+ </gfc:carrierOfCharacteristics>
3641
+ <gfc:carrierOfCharacteristics>
3642
+ <gfc:FC_FeatureAttribute>
3643
+ <gfc:memberName>
3644
+ <gco:LocalName>TOT_MNW</gco:LocalName>
3645
+ </gfc:memberName>
3646
+ <gfc:definition>
3647
+ <gco:CharacterString>Total Main Workers</gco:CharacterString>
3648
+ </gfc:definition>
3649
+ <gfc:cardinality gco:nilReason="unknown"/>
3650
+ <gfc:definitionReference>
3651
+ <gfc:FC_DefinitionReference>
3652
+ <gfc:definitionSource>
3653
+ <gfc:FC_DefinitionSource>
3654
+ <gfc:source>
3655
+ <gmd:CI_Citation>
3656
+ <gmd:title>
3657
+ <gco:CharacterString>Census of India</gco:CharacterString>
3658
+ </gmd:title>
3659
+ <gmd:date gco:nilReason="unknown"/>
3660
+ <gmd:citedResponsibleParty>
3661
+ <gmd:CI_ResponsibleParty>
3662
+ <gmd:organisationName>
3663
+ <gco:CharacterString>Census of India</gco:CharacterString>
3664
+ </gmd:organisationName>
3665
+ <gmd:role>
3666
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3667
+ </gmd:role>
3668
+ </gmd:CI_ResponsibleParty>
3669
+ </gmd:citedResponsibleParty>
3670
+ </gmd:CI_Citation>
3671
+ </gfc:source>
3672
+ </gfc:FC_DefinitionSource>
3673
+ </gfc:definitionSource>
3674
+ </gfc:FC_DefinitionReference>
3675
+ </gfc:definitionReference>
3676
+ <gfc:valueType>
3677
+ <gco:TypeName>
3678
+ <gco:aName>
3679
+ <gco:CharacterString>Double</gco:CharacterString>
3680
+ </gco:aName>
3681
+ </gco:TypeName>
3682
+ </gfc:valueType>
3683
+ </gfc:FC_FeatureAttribute>
3684
+ </gfc:carrierOfCharacteristics>
3685
+ <gfc:carrierOfCharacteristics>
3686
+ <gfc:FC_FeatureAttribute>
3687
+ <gfc:memberName>
3688
+ <gco:LocalName>F_OTH_W</gco:LocalName>
3689
+ </gfc:memberName>
3690
+ <gfc:definition>
3691
+ <gco:CharacterString>Female other workers</gco:CharacterString>
3692
+ </gfc:definition>
3693
+ <gfc:cardinality gco:nilReason="unknown"/>
3694
+ <gfc:definitionReference>
3695
+ <gfc:FC_DefinitionReference>
3696
+ <gfc:definitionSource>
3697
+ <gfc:FC_DefinitionSource>
3698
+ <gfc:source>
3699
+ <gmd:CI_Citation>
3700
+ <gmd:title>
3701
+ <gco:CharacterString>Census of India</gco:CharacterString>
3702
+ </gmd:title>
3703
+ <gmd:date gco:nilReason="unknown"/>
3704
+ <gmd:citedResponsibleParty>
3705
+ <gmd:CI_ResponsibleParty>
3706
+ <gmd:organisationName>
3707
+ <gco:CharacterString>Census of India</gco:CharacterString>
3708
+ </gmd:organisationName>
3709
+ <gmd:role>
3710
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3711
+ </gmd:role>
3712
+ </gmd:CI_ResponsibleParty>
3713
+ </gmd:citedResponsibleParty>
3714
+ </gmd:CI_Citation>
3715
+ </gfc:source>
3716
+ </gfc:FC_DefinitionSource>
3717
+ </gfc:definitionSource>
3718
+ </gfc:FC_DefinitionReference>
3719
+ </gfc:definitionReference>
3720
+ <gfc:valueType>
3721
+ <gco:TypeName>
3722
+ <gco:aName>
3723
+ <gco:CharacterString>Double</gco:CharacterString>
3724
+ </gco:aName>
3725
+ </gco:TypeName>
3726
+ </gfc:valueType>
3727
+ </gfc:FC_FeatureAttribute>
3728
+ </gfc:carrierOfCharacteristics>
3729
+ <gfc:carrierOfCharacteristics>
3730
+ <gfc:FC_FeatureAttribute>
3731
+ <gfc:memberName>
3732
+ <gco:LocalName>F_LIT</gco:LocalName>
3733
+ </gfc:memberName>
3734
+ <gfc:definition>
3735
+ <gco:CharacterString>Female literates</gco:CharacterString>
3736
+ </gfc:definition>
3737
+ <gfc:cardinality gco:nilReason="unknown"/>
3738
+ <gfc:definitionReference>
3739
+ <gfc:FC_DefinitionReference>
3740
+ <gfc:definitionSource>
3741
+ <gfc:FC_DefinitionSource>
3742
+ <gfc:source>
3743
+ <gmd:CI_Citation>
3744
+ <gmd:title>
3745
+ <gco:CharacterString>Census of India</gco:CharacterString>
3746
+ </gmd:title>
3747
+ <gmd:date gco:nilReason="unknown"/>
3748
+ <gmd:citedResponsibleParty>
3749
+ <gmd:CI_ResponsibleParty>
3750
+ <gmd:organisationName>
3751
+ <gco:CharacterString>Census of India</gco:CharacterString>
3752
+ </gmd:organisationName>
3753
+ <gmd:role>
3754
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3755
+ </gmd:role>
3756
+ </gmd:CI_ResponsibleParty>
3757
+ </gmd:citedResponsibleParty>
3758
+ </gmd:CI_Citation>
3759
+ </gfc:source>
3760
+ </gfc:FC_DefinitionSource>
3761
+ </gfc:definitionSource>
3762
+ </gfc:FC_DefinitionReference>
3763
+ </gfc:definitionReference>
3764
+ <gfc:valueType>
3765
+ <gco:TypeName>
3766
+ <gco:aName>
3767
+ <gco:CharacterString>Double</gco:CharacterString>
3768
+ </gco:aName>
3769
+ </gco:TypeName>
3770
+ </gfc:valueType>
3771
+ </gfc:FC_FeatureAttribute>
3772
+ </gfc:carrierOfCharacteristics>
3773
+ <gfc:carrierOfCharacteristics>
3774
+ <gfc:FC_FeatureAttribute>
3775
+ <gfc:memberName>
3776
+ <gco:LocalName>TOT_L6</gco:LocalName>
3777
+ </gfc:memberName>
3778
+ <gfc:definition>
3779
+ <gco:CharacterString>Total population below 6 years</gco:CharacterString>
3780
+ </gfc:definition>
3781
+ <gfc:cardinality gco:nilReason="unknown"/>
3782
+ <gfc:definitionReference>
3783
+ <gfc:FC_DefinitionReference>
3784
+ <gfc:definitionSource>
3785
+ <gfc:FC_DefinitionSource>
3786
+ <gfc:source>
3787
+ <gmd:CI_Citation>
3788
+ <gmd:title>
3789
+ <gco:CharacterString>Census of India</gco:CharacterString>
3790
+ </gmd:title>
3791
+ <gmd:date gco:nilReason="unknown"/>
3792
+ <gmd:citedResponsibleParty>
3793
+ <gmd:CI_ResponsibleParty>
3794
+ <gmd:organisationName>
3795
+ <gco:CharacterString>Census of India</gco:CharacterString>
3796
+ </gmd:organisationName>
3797
+ <gmd:role>
3798
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3799
+ </gmd:role>
3800
+ </gmd:CI_ResponsibleParty>
3801
+ </gmd:citedResponsibleParty>
3802
+ </gmd:CI_Citation>
3803
+ </gfc:source>
3804
+ </gfc:FC_DefinitionSource>
3805
+ </gfc:definitionSource>
3806
+ </gfc:FC_DefinitionReference>
3807
+ </gfc:definitionReference>
3808
+ <gfc:valueType>
3809
+ <gco:TypeName>
3810
+ <gco:aName>
3811
+ <gco:CharacterString>Double</gco:CharacterString>
3812
+ </gco:aName>
3813
+ </gco:TypeName>
3814
+ </gfc:valueType>
3815
+ </gfc:FC_FeatureAttribute>
3816
+ </gfc:carrierOfCharacteristics>
3817
+ <gfc:carrierOfCharacteristics>
3818
+ <gfc:FC_FeatureAttribute>
3819
+ <gfc:memberName>
3820
+ <gco:LocalName>F_AGLB</gco:LocalName>
3821
+ </gfc:memberName>
3822
+ <gfc:definition>
3823
+ <gco:CharacterString>Female Agricultural Labourers</gco:CharacterString>
3824
+ </gfc:definition>
3825
+ <gfc:cardinality gco:nilReason="unknown"/>
3826
+ <gfc:definitionReference>
3827
+ <gfc:FC_DefinitionReference>
3828
+ <gfc:definitionSource>
3829
+ <gfc:FC_DefinitionSource>
3830
+ <gfc:source>
3831
+ <gmd:CI_Citation>
3832
+ <gmd:title>
3833
+ <gco:CharacterString>Census of India</gco:CharacterString>
3834
+ </gmd:title>
3835
+ <gmd:date gco:nilReason="unknown"/>
3836
+ <gmd:citedResponsibleParty>
3837
+ <gmd:CI_ResponsibleParty>
3838
+ <gmd:organisationName>
3839
+ <gco:CharacterString>Census of India</gco:CharacterString>
3840
+ </gmd:organisationName>
3841
+ <gmd:role>
3842
+ <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider" codeSpace="001"/>
3843
+ </gmd:role>
3844
+ </gmd:CI_ResponsibleParty>
3845
+ </gmd:citedResponsibleParty>
3846
+ </gmd:CI_Citation>
3847
+ </gfc:source>
3848
+ </gfc:FC_DefinitionSource>
3849
+ </gfc:definitionSource>
3850
+ </gfc:FC_DefinitionReference>
3851
+ </gfc:definitionReference>
3852
+ <gfc:valueType>
3853
+ <gco:TypeName>
3854
+ <gco:aName>
3855
+ <gco:CharacterString>Double</gco:CharacterString>
3856
+ </gco:aName>
3857
+ </gco:TypeName>
3858
+ </gfc:valueType>
3859
+ </gfc:FC_FeatureAttribute>
3860
+ </gfc:carrierOfCharacteristics>
3861
+ </gfc:FC_FeatureType>
3862
+ </gfc:featureType>
3863
+ </gfc:FC_FeatureCatalogue>
3864
+ </rdf:Description>
3865
+ </rdf:RDF>