@cpp.js/package-gdal 1.0.0-beta.20

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 (1072) hide show
  1. package/LICENSE +467 -0
  2. package/README.md +47 -0
  3. package/cppjs-package-gdal.podspec +15 -0
  4. package/cppjs.build.js +53 -0
  5. package/cppjs.config.js +88 -0
  6. package/dist/prebuilt/Android-arm64-v8a/include/cpl_atomic_ops.h +106 -0
  7. package/dist/prebuilt/Android-arm64-v8a/include/cpl_auto_close.h +89 -0
  8. package/dist/prebuilt/Android-arm64-v8a/include/cpl_compressor.h +128 -0
  9. package/dist/prebuilt/Android-arm64-v8a/include/cpl_config.h +215 -0
  10. package/dist/prebuilt/Android-arm64-v8a/include/cpl_config_extras.h +34 -0
  11. package/dist/prebuilt/Android-arm64-v8a/include/cpl_conv.h +433 -0
  12. package/dist/prebuilt/Android-arm64-v8a/include/cpl_csv.h +87 -0
  13. package/dist/prebuilt/Android-arm64-v8a/include/cpl_error.h +348 -0
  14. package/dist/prebuilt/Android-arm64-v8a/include/cpl_hash_set.h +99 -0
  15. package/dist/prebuilt/Android-arm64-v8a/include/cpl_http.h +265 -0
  16. package/dist/prebuilt/Android-arm64-v8a/include/cpl_json.h +317 -0
  17. package/dist/prebuilt/Android-arm64-v8a/include/cpl_list.h +75 -0
  18. package/dist/prebuilt/Android-arm64-v8a/include/cpl_minixml.h +227 -0
  19. package/dist/prebuilt/Android-arm64-v8a/include/cpl_multiproc.h +257 -0
  20. package/dist/prebuilt/Android-arm64-v8a/include/cpl_port.h +1186 -0
  21. package/dist/prebuilt/Android-arm64-v8a/include/cpl_progress.h +65 -0
  22. package/dist/prebuilt/Android-arm64-v8a/include/cpl_quad_tree.h +118 -0
  23. package/dist/prebuilt/Android-arm64-v8a/include/cpl_spawn.h +76 -0
  24. package/dist/prebuilt/Android-arm64-v8a/include/cpl_string.h +876 -0
  25. package/dist/prebuilt/Android-arm64-v8a/include/cpl_time.h +45 -0
  26. package/dist/prebuilt/Android-arm64-v8a/include/cpl_virtualmem.h +381 -0
  27. package/dist/prebuilt/Android-arm64-v8a/include/cpl_vsi.h +798 -0
  28. package/dist/prebuilt/Android-arm64-v8a/include/cpl_vsi_error.h +69 -0
  29. package/dist/prebuilt/Android-arm64-v8a/include/cpl_vsi_virtual.h +547 -0
  30. package/dist/prebuilt/Android-arm64-v8a/include/cplkeywordparser.h +77 -0
  31. package/dist/prebuilt/Android-arm64-v8a/include/gdal.h +2550 -0
  32. package/dist/prebuilt/Android-arm64-v8a/include/gdal_alg.h +730 -0
  33. package/dist/prebuilt/Android-arm64-v8a/include/gdal_alg_priv.h +399 -0
  34. package/dist/prebuilt/Android-arm64-v8a/include/gdal_csv.h +41 -0
  35. package/dist/prebuilt/Android-arm64-v8a/include/gdal_frmts.h +249 -0
  36. package/dist/prebuilt/Android-arm64-v8a/include/gdal_mdreader.h +256 -0
  37. package/dist/prebuilt/Android-arm64-v8a/include/gdal_pam.h +473 -0
  38. package/dist/prebuilt/Android-arm64-v8a/include/gdal_priv.h +4389 -0
  39. package/dist/prebuilt/Android-arm64-v8a/include/gdal_proxy.h +457 -0
  40. package/dist/prebuilt/Android-arm64-v8a/include/gdal_rat.h +406 -0
  41. package/dist/prebuilt/Android-arm64-v8a/include/gdal_simplesurf.h +595 -0
  42. package/dist/prebuilt/Android-arm64-v8a/include/gdal_utils.h +329 -0
  43. package/dist/prebuilt/Android-arm64-v8a/include/gdal_version.h +33 -0
  44. package/dist/prebuilt/Android-arm64-v8a/include/gdal_vrt.h +105 -0
  45. package/dist/prebuilt/Android-arm64-v8a/include/gdalcachedpixelaccessor.h +455 -0
  46. package/dist/prebuilt/Android-arm64-v8a/include/gdalgeorefpamdataset.h +89 -0
  47. package/dist/prebuilt/Android-arm64-v8a/include/gdalgrid.h +118 -0
  48. package/dist/prebuilt/Android-arm64-v8a/include/gdalgrid_priv.h +83 -0
  49. package/dist/prebuilt/Android-arm64-v8a/include/gdaljp2abstractdataset.h +77 -0
  50. package/dist/prebuilt/Android-arm64-v8a/include/gdaljp2metadata.h +253 -0
  51. package/dist/prebuilt/Android-arm64-v8a/include/gdalpansharpen.h +274 -0
  52. package/dist/prebuilt/Android-arm64-v8a/include/gdalsubdatasetinfo.h +120 -0
  53. package/dist/prebuilt/Android-arm64-v8a/include/gdalwarper.h +635 -0
  54. package/dist/prebuilt/Android-arm64-v8a/include/gnm.h +750 -0
  55. package/dist/prebuilt/Android-arm64-v8a/include/gnm_api.h +101 -0
  56. package/dist/prebuilt/Android-arm64-v8a/include/gnmgraph.h +258 -0
  57. package/dist/prebuilt/Android-arm64-v8a/include/memdataset.h +187 -0
  58. package/dist/prebuilt/Android-arm64-v8a/include/ogr_api.h +1036 -0
  59. package/dist/prebuilt/Android-arm64-v8a/include/ogr_core.h +1338 -0
  60. package/dist/prebuilt/Android-arm64-v8a/include/ogr_feature.h +1997 -0
  61. package/dist/prebuilt/Android-arm64-v8a/include/ogr_featurestyle.h +874 -0
  62. package/dist/prebuilt/Android-arm64-v8a/include/ogr_geocoding.h +62 -0
  63. package/dist/prebuilt/Android-arm64-v8a/include/ogr_geomcoordinateprecision.h +95 -0
  64. package/dist/prebuilt/Android-arm64-v8a/include/ogr_geometry.h +4282 -0
  65. package/dist/prebuilt/Android-arm64-v8a/include/ogr_p.h +341 -0
  66. package/dist/prebuilt/Android-arm64-v8a/include/ogr_recordbatch.h +120 -0
  67. package/dist/prebuilt/Android-arm64-v8a/include/ogr_spatialref.h +1021 -0
  68. package/dist/prebuilt/Android-arm64-v8a/include/ogr_srs_api.h +1102 -0
  69. package/dist/prebuilt/Android-arm64-v8a/include/ogr_swq.h +493 -0
  70. package/dist/prebuilt/Android-arm64-v8a/include/ogrsf_frmts.h +749 -0
  71. package/dist/prebuilt/Android-arm64-v8a/include/rawdataset.h +271 -0
  72. package/dist/prebuilt/Android-arm64-v8a/include/vrtdataset.h +2298 -0
  73. package/dist/prebuilt/Android-arm64-v8a/lib/cmake/gdal/GDAL-targets-release.cmake +19 -0
  74. package/dist/prebuilt/Android-arm64-v8a/lib/cmake/gdal/GDAL-targets.cmake +106 -0
  75. package/dist/prebuilt/Android-arm64-v8a/lib/cmake/gdal/GDALConfig.cmake +21 -0
  76. package/dist/prebuilt/Android-arm64-v8a/lib/cmake/gdal/GDALConfigVersion.cmake +85 -0
  77. package/dist/prebuilt/Android-arm64-v8a/lib/gdalplugins/drivers.ini +287 -0
  78. package/dist/prebuilt/Android-arm64-v8a/lib/libgdal.so +0 -0
  79. package/dist/prebuilt/Android-arm64-v8a/lib/pkgconfig/gdal.pc +17 -0
  80. package/dist/prebuilt/Android-arm64-v8a/share/gdal/GDALLogoBW.svg +138 -0
  81. package/dist/prebuilt/Android-arm64-v8a/share/gdal/GDALLogoColor.svg +126 -0
  82. package/dist/prebuilt/Android-arm64-v8a/share/gdal/GDALLogoGS.svg +126 -0
  83. package/dist/prebuilt/Android-arm64-v8a/share/gdal/LICENSE.TXT +467 -0
  84. package/dist/prebuilt/Android-arm64-v8a/share/gdal/MM_m_idofic.csv +321 -0
  85. package/dist/prebuilt/Android-arm64-v8a/share/gdal/cubewerx_extra.wkt +48 -0
  86. package/dist/prebuilt/Android-arm64-v8a/share/gdal/default.rsc +0 -0
  87. package/dist/prebuilt/Android-arm64-v8a/share/gdal/ecw_cs.wkt +1453 -0
  88. package/dist/prebuilt/Android-arm64-v8a/share/gdal/epsg.wkt +1 -0
  89. package/dist/prebuilt/Android-arm64-v8a/share/gdal/esri_StatePlane_extra.wkt +631 -0
  90. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gdalicon.png +0 -0
  91. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gdalinfo_output.schema.json +346 -0
  92. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gdalmdiminfo_output.schema.json +321 -0
  93. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gdaltileindex.xsd +269 -0
  94. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gdalvrt.xsd +880 -0
  95. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gfs.xsd +246 -0
  96. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gml_registry.xml +117 -0
  97. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gml_registry.xsd +66 -0
  98. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_center.csv +251 -0
  99. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_process.csv +102 -0
  100. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_subcenter.csv +63 -0
  101. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_0.csv +261 -0
  102. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_1.csv +261 -0
  103. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_13.csv +261 -0
  104. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_14.csv +261 -0
  105. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_15.csv +261 -0
  106. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_16.csv +261 -0
  107. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_17.csv +11 -0
  108. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_18.csv +261 -0
  109. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_19.csv +261 -0
  110. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_190.csv +261 -0
  111. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_191.csv +261 -0
  112. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_2.csv +261 -0
  113. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_20.csv +261 -0
  114. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_21.csv +261 -0
  115. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_3.csv +261 -0
  116. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_4.csv +261 -0
  117. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_5.csv +261 -0
  118. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_6.csv +261 -0
  119. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_0_7.csv +261 -0
  120. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_10_0.csv +261 -0
  121. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_10_1.csv +261 -0
  122. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_10_191.csv +261 -0
  123. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_10_2.csv +261 -0
  124. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_10_3.csv +261 -0
  125. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_10_4.csv +261 -0
  126. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_1_0.csv +261 -0
  127. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_1_1.csv +261 -0
  128. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_1_2.csv +261 -0
  129. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_20_0.csv +261 -0
  130. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_20_1.csv +261 -0
  131. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_20_2.csv +261 -0
  132. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_2_0.csv +261 -0
  133. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_2_3.csv +261 -0
  134. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_2_4.csv +261 -0
  135. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_2_5.csv +261 -0
  136. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_2_6.csv +261 -0
  137. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_3_0.csv +261 -0
  138. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_3_1.csv +261 -0
  139. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_3_2.csv +28 -0
  140. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_3_3.csv +8 -0
  141. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_3_4.csv +14 -0
  142. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_3_5.csv +11 -0
  143. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_3_6.csv +11 -0
  144. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_0.csv +261 -0
  145. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_1.csv +261 -0
  146. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_10.csv +261 -0
  147. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_2.csv +261 -0
  148. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_3.csv +261 -0
  149. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_4.csv +261 -0
  150. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_5.csv +261 -0
  151. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_6.csv +261 -0
  152. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_7.csv +261 -0
  153. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_8.csv +261 -0
  154. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_4_9.csv +261 -0
  155. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_local_Canada.csv +5 -0
  156. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_local_HPC.csv +2 -0
  157. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_local_MRMS.csv +175 -0
  158. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_local_NCEP.csv +401 -0
  159. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_local_NDFD.csv +38 -0
  160. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_2_local_index.csv +7 -0
  161. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_4_5.csv +261 -0
  162. package/dist/prebuilt/Android-arm64-v8a/share/gdal/grib2_table_versions.csv +3 -0
  163. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gt_datum.csv +229 -0
  164. package/dist/prebuilt/Android-arm64-v8a/share/gdal/gt_ellips.csv +24 -0
  165. package/dist/prebuilt/Android-arm64-v8a/share/gdal/header.dxf +1124 -0
  166. package/dist/prebuilt/Android-arm64-v8a/share/gdal/inspire_cp_BasicPropertyUnit.gfs +57 -0
  167. package/dist/prebuilt/Android-arm64-v8a/share/gdal/inspire_cp_CadastralBoundary.gfs +60 -0
  168. package/dist/prebuilt/Android-arm64-v8a/share/gdal/inspire_cp_CadastralParcel.gfs +81 -0
  169. package/dist/prebuilt/Android-arm64-v8a/share/gdal/inspire_cp_CadastralZoning.gfs +161 -0
  170. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_AdmArea.gfs +59 -0
  171. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_AdmBdry.gfs +49 -0
  172. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_AdmPt.gfs +59 -0
  173. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_BldA.gfs +54 -0
  174. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_BldL.gfs +54 -0
  175. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_Cntr.gfs +54 -0
  176. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_CommBdry.gfs +49 -0
  177. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_CommPt.gfs +59 -0
  178. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_Cstline.gfs +54 -0
  179. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_ElevPt.gfs +54 -0
  180. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_GCP.gfs +94 -0
  181. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_LeveeEdge.gfs +49 -0
  182. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_RailCL.gfs +54 -0
  183. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_RdASL.gfs +44 -0
  184. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_RdArea.gfs +54 -0
  185. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_RdCompt.gfs +59 -0
  186. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_RdEdg.gfs +59 -0
  187. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_RdMgtBdry.gfs +49 -0
  188. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_RdSgmtA.gfs +59 -0
  189. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_RvrMgtBdry.gfs +49 -0
  190. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_SBAPt.gfs +49 -0
  191. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_SBArea.gfs +54 -0
  192. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_SBBdry.gfs +44 -0
  193. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_WA.gfs +54 -0
  194. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_WL.gfs +54 -0
  195. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_WStrA.gfs +54 -0
  196. package/dist/prebuilt/Android-arm64-v8a/share/gdal/jpfgdgml_WStrL.gfs +54 -0
  197. package/dist/prebuilt/Android-arm64-v8a/share/gdal/nitf_spec.xml +3306 -0
  198. package/dist/prebuilt/Android-arm64-v8a/share/gdal/nitf_spec.xsd +189 -0
  199. package/dist/prebuilt/Android-arm64-v8a/share/gdal/ogrinfo_output.schema.json +528 -0
  200. package/dist/prebuilt/Android-arm64-v8a/share/gdal/ogrvrt.xsd +546 -0
  201. package/dist/prebuilt/Android-arm64-v8a/share/gdal/osmconf.ini +132 -0
  202. package/dist/prebuilt/Android-arm64-v8a/share/gdal/ozi_datum.csv +131 -0
  203. package/dist/prebuilt/Android-arm64-v8a/share/gdal/ozi_ellips.csv +35 -0
  204. package/dist/prebuilt/Android-arm64-v8a/share/gdal/pci_datum.txt +530 -0
  205. package/dist/prebuilt/Android-arm64-v8a/share/gdal/pci_ellips.txt +129 -0
  206. package/dist/prebuilt/Android-arm64-v8a/share/gdal/pdfcomposition.xsd +721 -0
  207. package/dist/prebuilt/Android-arm64-v8a/share/gdal/ruian_vf_ob_v1.gfs +1455 -0
  208. package/dist/prebuilt/Android-arm64-v8a/share/gdal/ruian_vf_st_uvoh_v1.gfs +86 -0
  209. package/dist/prebuilt/Android-arm64-v8a/share/gdal/ruian_vf_st_v1.gfs +1489 -0
  210. package/dist/prebuilt/Android-arm64-v8a/share/gdal/ruian_vf_v1.gfs +2126 -0
  211. package/dist/prebuilt/Android-arm64-v8a/share/gdal/s57agencies.csv +249 -0
  212. package/dist/prebuilt/Android-arm64-v8a/share/gdal/s57attributes.csv +484 -0
  213. package/dist/prebuilt/Android-arm64-v8a/share/gdal/s57expectedinput.csv +1008 -0
  214. package/dist/prebuilt/Android-arm64-v8a/share/gdal/s57objectclasses.csv +287 -0
  215. package/dist/prebuilt/Android-arm64-v8a/share/gdal/seed_2d.dgn +0 -0
  216. package/dist/prebuilt/Android-arm64-v8a/share/gdal/seed_3d.dgn +0 -0
  217. package/dist/prebuilt/Android-arm64-v8a/share/gdal/stateplane.csv +259 -0
  218. package/dist/prebuilt/Android-arm64-v8a/share/gdal/tms_LINZAntarticaMapTileGrid.json +190 -0
  219. package/dist/prebuilt/Android-arm64-v8a/share/gdal/tms_MapML_APSTILE.json +268 -0
  220. package/dist/prebuilt/Android-arm64-v8a/share/gdal/tms_MapML_CBMTILE.json +346 -0
  221. package/dist/prebuilt/Android-arm64-v8a/share/gdal/tms_NZTM2000.json +243 -0
  222. package/dist/prebuilt/Android-arm64-v8a/share/gdal/trailer.dxf +434 -0
  223. package/dist/prebuilt/Android-arm64-v8a/share/gdal/vdv452.xml +367 -0
  224. package/dist/prebuilt/Android-arm64-v8a/share/gdal/vdv452.xsd +63 -0
  225. package/dist/prebuilt/CMakeLists.txt +44 -0
  226. package/dist/prebuilt/Emscripten-x86_64/include/cpl_atomic_ops.h +106 -0
  227. package/dist/prebuilt/Emscripten-x86_64/include/cpl_auto_close.h +89 -0
  228. package/dist/prebuilt/Emscripten-x86_64/include/cpl_compressor.h +128 -0
  229. package/dist/prebuilt/Emscripten-x86_64/include/cpl_config.h +215 -0
  230. package/dist/prebuilt/Emscripten-x86_64/include/cpl_config_extras.h +34 -0
  231. package/dist/prebuilt/Emscripten-x86_64/include/cpl_conv.h +433 -0
  232. package/dist/prebuilt/Emscripten-x86_64/include/cpl_csv.h +87 -0
  233. package/dist/prebuilt/Emscripten-x86_64/include/cpl_error.h +348 -0
  234. package/dist/prebuilt/Emscripten-x86_64/include/cpl_hash_set.h +99 -0
  235. package/dist/prebuilt/Emscripten-x86_64/include/cpl_http.h +265 -0
  236. package/dist/prebuilt/Emscripten-x86_64/include/cpl_json.h +317 -0
  237. package/dist/prebuilt/Emscripten-x86_64/include/cpl_list.h +75 -0
  238. package/dist/prebuilt/Emscripten-x86_64/include/cpl_minixml.h +227 -0
  239. package/dist/prebuilt/Emscripten-x86_64/include/cpl_multiproc.h +257 -0
  240. package/dist/prebuilt/Emscripten-x86_64/include/cpl_port.h +1186 -0
  241. package/dist/prebuilt/Emscripten-x86_64/include/cpl_progress.h +65 -0
  242. package/dist/prebuilt/Emscripten-x86_64/include/cpl_quad_tree.h +118 -0
  243. package/dist/prebuilt/Emscripten-x86_64/include/cpl_spawn.h +76 -0
  244. package/dist/prebuilt/Emscripten-x86_64/include/cpl_string.h +876 -0
  245. package/dist/prebuilt/Emscripten-x86_64/include/cpl_time.h +45 -0
  246. package/dist/prebuilt/Emscripten-x86_64/include/cpl_virtualmem.h +381 -0
  247. package/dist/prebuilt/Emscripten-x86_64/include/cpl_vsi.h +798 -0
  248. package/dist/prebuilt/Emscripten-x86_64/include/cpl_vsi_error.h +69 -0
  249. package/dist/prebuilt/Emscripten-x86_64/include/cpl_vsi_virtual.h +547 -0
  250. package/dist/prebuilt/Emscripten-x86_64/include/cplkeywordparser.h +77 -0
  251. package/dist/prebuilt/Emscripten-x86_64/include/gdal.h +2550 -0
  252. package/dist/prebuilt/Emscripten-x86_64/include/gdal_alg.h +730 -0
  253. package/dist/prebuilt/Emscripten-x86_64/include/gdal_alg_priv.h +399 -0
  254. package/dist/prebuilt/Emscripten-x86_64/include/gdal_csv.h +41 -0
  255. package/dist/prebuilt/Emscripten-x86_64/include/gdal_frmts.h +249 -0
  256. package/dist/prebuilt/Emscripten-x86_64/include/gdal_mdreader.h +256 -0
  257. package/dist/prebuilt/Emscripten-x86_64/include/gdal_pam.h +473 -0
  258. package/dist/prebuilt/Emscripten-x86_64/include/gdal_priv.h +4389 -0
  259. package/dist/prebuilt/Emscripten-x86_64/include/gdal_proxy.h +457 -0
  260. package/dist/prebuilt/Emscripten-x86_64/include/gdal_rat.h +406 -0
  261. package/dist/prebuilt/Emscripten-x86_64/include/gdal_simplesurf.h +595 -0
  262. package/dist/prebuilt/Emscripten-x86_64/include/gdal_utils.h +329 -0
  263. package/dist/prebuilt/Emscripten-x86_64/include/gdal_version.h +33 -0
  264. package/dist/prebuilt/Emscripten-x86_64/include/gdal_vrt.h +105 -0
  265. package/dist/prebuilt/Emscripten-x86_64/include/gdalcachedpixelaccessor.h +455 -0
  266. package/dist/prebuilt/Emscripten-x86_64/include/gdalgeorefpamdataset.h +89 -0
  267. package/dist/prebuilt/Emscripten-x86_64/include/gdalgrid.h +118 -0
  268. package/dist/prebuilt/Emscripten-x86_64/include/gdalgrid_priv.h +83 -0
  269. package/dist/prebuilt/Emscripten-x86_64/include/gdaljp2abstractdataset.h +77 -0
  270. package/dist/prebuilt/Emscripten-x86_64/include/gdaljp2metadata.h +253 -0
  271. package/dist/prebuilt/Emscripten-x86_64/include/gdalpansharpen.h +274 -0
  272. package/dist/prebuilt/Emscripten-x86_64/include/gdalsubdatasetinfo.h +120 -0
  273. package/dist/prebuilt/Emscripten-x86_64/include/gdalwarper.h +635 -0
  274. package/dist/prebuilt/Emscripten-x86_64/include/gnm.h +750 -0
  275. package/dist/prebuilt/Emscripten-x86_64/include/gnm_api.h +101 -0
  276. package/dist/prebuilt/Emscripten-x86_64/include/gnmgraph.h +258 -0
  277. package/dist/prebuilt/Emscripten-x86_64/include/memdataset.h +187 -0
  278. package/dist/prebuilt/Emscripten-x86_64/include/ogr_api.h +1036 -0
  279. package/dist/prebuilt/Emscripten-x86_64/include/ogr_core.h +1338 -0
  280. package/dist/prebuilt/Emscripten-x86_64/include/ogr_feature.h +1997 -0
  281. package/dist/prebuilt/Emscripten-x86_64/include/ogr_featurestyle.h +874 -0
  282. package/dist/prebuilt/Emscripten-x86_64/include/ogr_geocoding.h +62 -0
  283. package/dist/prebuilt/Emscripten-x86_64/include/ogr_geomcoordinateprecision.h +95 -0
  284. package/dist/prebuilt/Emscripten-x86_64/include/ogr_geometry.h +4282 -0
  285. package/dist/prebuilt/Emscripten-x86_64/include/ogr_p.h +341 -0
  286. package/dist/prebuilt/Emscripten-x86_64/include/ogr_recordbatch.h +120 -0
  287. package/dist/prebuilt/Emscripten-x86_64/include/ogr_spatialref.h +1021 -0
  288. package/dist/prebuilt/Emscripten-x86_64/include/ogr_srs_api.h +1102 -0
  289. package/dist/prebuilt/Emscripten-x86_64/include/ogr_swq.h +493 -0
  290. package/dist/prebuilt/Emscripten-x86_64/include/ogrsf_frmts.h +749 -0
  291. package/dist/prebuilt/Emscripten-x86_64/include/rawdataset.h +271 -0
  292. package/dist/prebuilt/Emscripten-x86_64/include/vrtdataset.h +2298 -0
  293. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/3.20/FindLibLZMA.cmake +126 -0
  294. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/3.20/FindPostgreSQL.cmake +312 -0
  295. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/DefineFindPackage2.cmake +164 -0
  296. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/GDAL-targets-release.cmake +19 -0
  297. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/GDAL-targets.cmake +107 -0
  298. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/GDALConfig.cmake +31 -0
  299. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/GDALConfigVersion.cmake +85 -0
  300. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/GdalFindModulePath.cmake +13 -0
  301. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindBRUNSLI.cmake +74 -0
  302. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindBlosc.cmake +74 -0
  303. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindCURL.cmake +235 -0
  304. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindCryptoPP.cmake +91 -0
  305. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindDB2.cmake +103 -0
  306. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindDeflate.cmake +111 -0
  307. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindECW.cmake +168 -0
  308. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindEXPAT.cmake +156 -0
  309. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindFYBA.cmake +38 -0
  310. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindFileGDB.cmake +93 -0
  311. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindFreeXL.cmake +66 -0
  312. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindGEOS.cmake +49 -0
  313. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindGIF.cmake +96 -0
  314. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindGeoTIFF.cmake +104 -0
  315. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindHDF4.cmake +131 -0
  316. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindHDFS.cmake +54 -0
  317. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindIDB.cmake +45 -0
  318. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindIconv.cmake +143 -0
  319. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindJSONC.cmake +47 -0
  320. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindKDU.cmake +105 -0
  321. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindLERC.cmake +46 -0
  322. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindLURATECH.cmake +35 -0
  323. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindLZ4.cmake +130 -0
  324. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindLibKML.cmake +131 -0
  325. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindMONGOCXX.cmake +56 -0
  326. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindMRSID.cmake +66 -0
  327. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindMSSQL_NCLI.cmake +86 -0
  328. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindMSSQL_ODBC.cmake +113 -0
  329. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindMySQL.cmake +83 -0
  330. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindNetCDF.cmake +209 -0
  331. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindODBC.cmake +258 -0
  332. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindODBCCPP.cmake +72 -0
  333. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindOGDI.cmake +63 -0
  334. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindOpenCAD.cmake +96 -0
  335. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindOpenEXR.cmake +125 -0
  336. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindOpenJPEG.cmake +124 -0
  337. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindOracle.cmake +226 -0
  338. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindPCRE.cmake +28 -0
  339. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindPCRE2.cmake +27 -0
  340. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindPROJ.cmake +91 -0
  341. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindPodofo.cmake +93 -0
  342. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindPoppler.cmake +182 -0
  343. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindQHULL.cmake +43 -0
  344. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindRASTERLITE2.cmake +85 -0
  345. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindSFCGAL.cmake +87 -0
  346. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindSPATIALITE.cmake +73 -0
  347. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindSQLite3.cmake +190 -0
  348. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindShapelib.cmake +69 -0
  349. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindSpatialindex.cmake +18 -0
  350. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindTEIGHA.cmake +242 -0
  351. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindWebP.cmake +38 -0
  352. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/packages/FindZSTD.cmake +95 -0
  353. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/DotnetImports.props.in +7 -0
  354. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/FindCSharp.cmake +72 -0
  355. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/FindDotnet.cmake +499 -0
  356. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/FindInt128.cmake +65 -0
  357. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/FindMono.cmake +162 -0
  358. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/GetGitHeadDate.cmake +33 -0
  359. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/GetGitRevisionDescription.cmake +181 -0
  360. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/GetGitRevisionDescription.cmake.in +50 -0
  361. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/OSXInstallDirs.cmake +214 -0
  362. package/dist/prebuilt/Emscripten-x86_64/lib/cmake/gdal/thirdparty/SystemSummary.cmake +89 -0
  363. package/dist/prebuilt/Emscripten-x86_64/lib/gdalplugins/drivers.ini +287 -0
  364. package/dist/prebuilt/Emscripten-x86_64/lib/libgdal.a +0 -0
  365. package/dist/prebuilt/Emscripten-x86_64/lib/pkgconfig/gdal.pc +17 -0
  366. package/dist/prebuilt/Emscripten-x86_64/share/gdal/GDALLogoBW.svg +138 -0
  367. package/dist/prebuilt/Emscripten-x86_64/share/gdal/GDALLogoColor.svg +126 -0
  368. package/dist/prebuilt/Emscripten-x86_64/share/gdal/GDALLogoGS.svg +126 -0
  369. package/dist/prebuilt/Emscripten-x86_64/share/gdal/LICENSE.TXT +467 -0
  370. package/dist/prebuilt/Emscripten-x86_64/share/gdal/MM_m_idofic.csv +321 -0
  371. package/dist/prebuilt/Emscripten-x86_64/share/gdal/cubewerx_extra.wkt +48 -0
  372. package/dist/prebuilt/Emscripten-x86_64/share/gdal/default.rsc +0 -0
  373. package/dist/prebuilt/Emscripten-x86_64/share/gdal/ecw_cs.wkt +1453 -0
  374. package/dist/prebuilt/Emscripten-x86_64/share/gdal/epsg.wkt +1 -0
  375. package/dist/prebuilt/Emscripten-x86_64/share/gdal/esri_StatePlane_extra.wkt +631 -0
  376. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gdalicon.png +0 -0
  377. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gdalinfo_output.schema.json +346 -0
  378. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gdalmdiminfo_output.schema.json +321 -0
  379. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gdaltileindex.xsd +269 -0
  380. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gdalvrt.xsd +880 -0
  381. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gfs.xsd +246 -0
  382. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gml_registry.xml +117 -0
  383. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gml_registry.xsd +66 -0
  384. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_center.csv +251 -0
  385. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_process.csv +102 -0
  386. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_subcenter.csv +63 -0
  387. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_0.csv +261 -0
  388. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_1.csv +261 -0
  389. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_13.csv +261 -0
  390. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_14.csv +261 -0
  391. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_15.csv +261 -0
  392. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_16.csv +261 -0
  393. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_17.csv +11 -0
  394. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_18.csv +261 -0
  395. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_19.csv +261 -0
  396. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_190.csv +261 -0
  397. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_191.csv +261 -0
  398. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_2.csv +261 -0
  399. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_20.csv +261 -0
  400. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_21.csv +261 -0
  401. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_3.csv +261 -0
  402. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_4.csv +261 -0
  403. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_5.csv +261 -0
  404. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_6.csv +261 -0
  405. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_0_7.csv +261 -0
  406. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_10_0.csv +261 -0
  407. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_10_1.csv +261 -0
  408. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_10_191.csv +261 -0
  409. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_10_2.csv +261 -0
  410. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_10_3.csv +261 -0
  411. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_10_4.csv +261 -0
  412. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_1_0.csv +261 -0
  413. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_1_1.csv +261 -0
  414. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_1_2.csv +261 -0
  415. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_20_0.csv +261 -0
  416. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_20_1.csv +261 -0
  417. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_20_2.csv +261 -0
  418. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_2_0.csv +261 -0
  419. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_2_3.csv +261 -0
  420. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_2_4.csv +261 -0
  421. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_2_5.csv +261 -0
  422. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_2_6.csv +261 -0
  423. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_3_0.csv +261 -0
  424. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_3_1.csv +261 -0
  425. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_3_2.csv +28 -0
  426. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_3_3.csv +8 -0
  427. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_3_4.csv +14 -0
  428. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_3_5.csv +11 -0
  429. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_3_6.csv +11 -0
  430. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_0.csv +261 -0
  431. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_1.csv +261 -0
  432. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_10.csv +261 -0
  433. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_2.csv +261 -0
  434. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_3.csv +261 -0
  435. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_4.csv +261 -0
  436. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_5.csv +261 -0
  437. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_6.csv +261 -0
  438. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_7.csv +261 -0
  439. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_8.csv +261 -0
  440. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_4_9.csv +261 -0
  441. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_local_Canada.csv +5 -0
  442. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_local_HPC.csv +2 -0
  443. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_local_MRMS.csv +175 -0
  444. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_local_NCEP.csv +401 -0
  445. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_local_NDFD.csv +38 -0
  446. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_2_local_index.csv +7 -0
  447. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_4_5.csv +261 -0
  448. package/dist/prebuilt/Emscripten-x86_64/share/gdal/grib2_table_versions.csv +3 -0
  449. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gt_datum.csv +229 -0
  450. package/dist/prebuilt/Emscripten-x86_64/share/gdal/gt_ellips.csv +24 -0
  451. package/dist/prebuilt/Emscripten-x86_64/share/gdal/header.dxf +1124 -0
  452. package/dist/prebuilt/Emscripten-x86_64/share/gdal/inspire_cp_BasicPropertyUnit.gfs +57 -0
  453. package/dist/prebuilt/Emscripten-x86_64/share/gdal/inspire_cp_CadastralBoundary.gfs +60 -0
  454. package/dist/prebuilt/Emscripten-x86_64/share/gdal/inspire_cp_CadastralParcel.gfs +81 -0
  455. package/dist/prebuilt/Emscripten-x86_64/share/gdal/inspire_cp_CadastralZoning.gfs +161 -0
  456. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_AdmArea.gfs +59 -0
  457. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_AdmBdry.gfs +49 -0
  458. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_AdmPt.gfs +59 -0
  459. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_BldA.gfs +54 -0
  460. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_BldL.gfs +54 -0
  461. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_Cntr.gfs +54 -0
  462. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_CommBdry.gfs +49 -0
  463. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_CommPt.gfs +59 -0
  464. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_Cstline.gfs +54 -0
  465. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_ElevPt.gfs +54 -0
  466. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_GCP.gfs +94 -0
  467. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_LeveeEdge.gfs +49 -0
  468. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_RailCL.gfs +54 -0
  469. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_RdASL.gfs +44 -0
  470. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_RdArea.gfs +54 -0
  471. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_RdCompt.gfs +59 -0
  472. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_RdEdg.gfs +59 -0
  473. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_RdMgtBdry.gfs +49 -0
  474. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_RdSgmtA.gfs +59 -0
  475. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_RvrMgtBdry.gfs +49 -0
  476. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_SBAPt.gfs +49 -0
  477. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_SBArea.gfs +54 -0
  478. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_SBBdry.gfs +44 -0
  479. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_WA.gfs +54 -0
  480. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_WL.gfs +54 -0
  481. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_WStrA.gfs +54 -0
  482. package/dist/prebuilt/Emscripten-x86_64/share/gdal/jpfgdgml_WStrL.gfs +54 -0
  483. package/dist/prebuilt/Emscripten-x86_64/share/gdal/nitf_spec.xml +3306 -0
  484. package/dist/prebuilt/Emscripten-x86_64/share/gdal/nitf_spec.xsd +189 -0
  485. package/dist/prebuilt/Emscripten-x86_64/share/gdal/ogrinfo_output.schema.json +528 -0
  486. package/dist/prebuilt/Emscripten-x86_64/share/gdal/ogrvrt.xsd +546 -0
  487. package/dist/prebuilt/Emscripten-x86_64/share/gdal/osmconf.ini +132 -0
  488. package/dist/prebuilt/Emscripten-x86_64/share/gdal/ozi_datum.csv +131 -0
  489. package/dist/prebuilt/Emscripten-x86_64/share/gdal/ozi_ellips.csv +35 -0
  490. package/dist/prebuilt/Emscripten-x86_64/share/gdal/pci_datum.txt +530 -0
  491. package/dist/prebuilt/Emscripten-x86_64/share/gdal/pci_ellips.txt +129 -0
  492. package/dist/prebuilt/Emscripten-x86_64/share/gdal/pdfcomposition.xsd +721 -0
  493. package/dist/prebuilt/Emscripten-x86_64/share/gdal/ruian_vf_ob_v1.gfs +1455 -0
  494. package/dist/prebuilt/Emscripten-x86_64/share/gdal/ruian_vf_st_uvoh_v1.gfs +86 -0
  495. package/dist/prebuilt/Emscripten-x86_64/share/gdal/ruian_vf_st_v1.gfs +1489 -0
  496. package/dist/prebuilt/Emscripten-x86_64/share/gdal/ruian_vf_v1.gfs +2126 -0
  497. package/dist/prebuilt/Emscripten-x86_64/share/gdal/s57agencies.csv +249 -0
  498. package/dist/prebuilt/Emscripten-x86_64/share/gdal/s57attributes.csv +484 -0
  499. package/dist/prebuilt/Emscripten-x86_64/share/gdal/s57expectedinput.csv +1008 -0
  500. package/dist/prebuilt/Emscripten-x86_64/share/gdal/s57objectclasses.csv +287 -0
  501. package/dist/prebuilt/Emscripten-x86_64/share/gdal/seed_2d.dgn +0 -0
  502. package/dist/prebuilt/Emscripten-x86_64/share/gdal/seed_3d.dgn +0 -0
  503. package/dist/prebuilt/Emscripten-x86_64/share/gdal/stateplane.csv +259 -0
  504. package/dist/prebuilt/Emscripten-x86_64/share/gdal/tms_LINZAntarticaMapTileGrid.json +190 -0
  505. package/dist/prebuilt/Emscripten-x86_64/share/gdal/tms_MapML_APSTILE.json +268 -0
  506. package/dist/prebuilt/Emscripten-x86_64/share/gdal/tms_MapML_CBMTILE.json +346 -0
  507. package/dist/prebuilt/Emscripten-x86_64/share/gdal/tms_NZTM2000.json +243 -0
  508. package/dist/prebuilt/Emscripten-x86_64/share/gdal/trailer.dxf +434 -0
  509. package/dist/prebuilt/Emscripten-x86_64/share/gdal/vdv452.xml +367 -0
  510. package/dist/prebuilt/Emscripten-x86_64/share/gdal/vdv452.xsd +63 -0
  511. package/dist/prebuilt/gdal.xcframework/Info.plist +50 -0
  512. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_atomic_ops.h +106 -0
  513. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_auto_close.h +89 -0
  514. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_compressor.h +128 -0
  515. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_config.h +215 -0
  516. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_config_extras.h +34 -0
  517. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_conv.h +433 -0
  518. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_csv.h +87 -0
  519. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_error.h +348 -0
  520. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_hash_set.h +99 -0
  521. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_http.h +265 -0
  522. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_json.h +317 -0
  523. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_list.h +75 -0
  524. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_minixml.h +227 -0
  525. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_multiproc.h +257 -0
  526. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_port.h +1186 -0
  527. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_progress.h +65 -0
  528. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_quad_tree.h +118 -0
  529. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_spawn.h +76 -0
  530. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_string.h +876 -0
  531. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_time.h +45 -0
  532. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_virtualmem.h +381 -0
  533. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_vsi.h +798 -0
  534. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_vsi_error.h +69 -0
  535. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cpl_vsi_virtual.h +547 -0
  536. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/cplkeywordparser.h +77 -0
  537. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal.h +2550 -0
  538. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_alg.h +730 -0
  539. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_alg_priv.h +399 -0
  540. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_csv.h +41 -0
  541. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_frmts.h +249 -0
  542. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_mdreader.h +256 -0
  543. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_pam.h +473 -0
  544. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_priv.h +4389 -0
  545. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_proxy.h +457 -0
  546. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_rat.h +406 -0
  547. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_simplesurf.h +595 -0
  548. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_utils.h +329 -0
  549. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_version.h +33 -0
  550. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdal_vrt.h +105 -0
  551. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdalcachedpixelaccessor.h +455 -0
  552. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdalgeorefpamdataset.h +89 -0
  553. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdalgrid.h +118 -0
  554. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdalgrid_priv.h +83 -0
  555. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdaljp2abstractdataset.h +77 -0
  556. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdaljp2metadata.h +253 -0
  557. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdalpansharpen.h +274 -0
  558. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdalsubdatasetinfo.h +120 -0
  559. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gdalwarper.h +635 -0
  560. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gnm.h +750 -0
  561. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gnm_api.h +101 -0
  562. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/gnmgraph.h +258 -0
  563. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/memdataset.h +187 -0
  564. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_api.h +1036 -0
  565. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_core.h +1338 -0
  566. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_feature.h +1997 -0
  567. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_featurestyle.h +874 -0
  568. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_geocoding.h +62 -0
  569. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_geomcoordinateprecision.h +95 -0
  570. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_geometry.h +4282 -0
  571. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_p.h +341 -0
  572. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_recordbatch.h +120 -0
  573. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_spatialref.h +1021 -0
  574. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_srs_api.h +1102 -0
  575. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogr_swq.h +493 -0
  576. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/ogrsf_frmts.h +749 -0
  577. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/rawdataset.h +271 -0
  578. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/Headers/vrtdataset.h +2298 -0
  579. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e/libgdal.a +0 -0
  580. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_atomic_ops.h +106 -0
  581. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_auto_close.h +89 -0
  582. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_compressor.h +128 -0
  583. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_config.h +215 -0
  584. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_config_extras.h +34 -0
  585. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_conv.h +433 -0
  586. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_csv.h +87 -0
  587. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_error.h +348 -0
  588. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_hash_set.h +99 -0
  589. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_http.h +265 -0
  590. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_json.h +317 -0
  591. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_list.h +75 -0
  592. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_minixml.h +227 -0
  593. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_multiproc.h +257 -0
  594. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_port.h +1186 -0
  595. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_progress.h +65 -0
  596. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_quad_tree.h +118 -0
  597. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_spawn.h +76 -0
  598. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_string.h +876 -0
  599. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_time.h +45 -0
  600. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_virtualmem.h +381 -0
  601. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_vsi.h +798 -0
  602. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_vsi_error.h +69 -0
  603. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cpl_vsi_virtual.h +547 -0
  604. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/cplkeywordparser.h +77 -0
  605. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal.h +2550 -0
  606. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_alg.h +730 -0
  607. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_alg_priv.h +399 -0
  608. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_csv.h +41 -0
  609. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_frmts.h +249 -0
  610. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_mdreader.h +256 -0
  611. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_pam.h +473 -0
  612. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_priv.h +4389 -0
  613. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_proxy.h +457 -0
  614. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_rat.h +406 -0
  615. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_simplesurf.h +595 -0
  616. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_utils.h +329 -0
  617. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_version.h +33 -0
  618. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdal_vrt.h +105 -0
  619. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdalcachedpixelaccessor.h +455 -0
  620. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdalgeorefpamdataset.h +89 -0
  621. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdalgrid.h +118 -0
  622. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdalgrid_priv.h +83 -0
  623. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdaljp2abstractdataset.h +77 -0
  624. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdaljp2metadata.h +253 -0
  625. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdalpansharpen.h +274 -0
  626. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdalsubdatasetinfo.h +120 -0
  627. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gdalwarper.h +635 -0
  628. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gnm.h +750 -0
  629. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gnm_api.h +101 -0
  630. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/gnmgraph.h +258 -0
  631. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/memdataset.h +187 -0
  632. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_api.h +1036 -0
  633. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_core.h +1338 -0
  634. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_feature.h +1997 -0
  635. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_featurestyle.h +874 -0
  636. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_geocoding.h +62 -0
  637. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_geomcoordinateprecision.h +95 -0
  638. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_geometry.h +4282 -0
  639. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_p.h +341 -0
  640. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_recordbatch.h +120 -0
  641. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_spatialref.h +1021 -0
  642. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_srs_api.h +1102 -0
  643. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogr_swq.h +493 -0
  644. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/ogrsf_frmts.h +749 -0
  645. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/rawdataset.h +271 -0
  646. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/vrtdataset.h +2298 -0
  647. package/dist/prebuilt/gdal.xcframework/ios-arm64_arm64e_x86_64-simulator/libgdal.a +0 -0
  648. package/dist/prebuilt/iOS-iphoneos/include/cpl_atomic_ops.h +106 -0
  649. package/dist/prebuilt/iOS-iphoneos/include/cpl_auto_close.h +89 -0
  650. package/dist/prebuilt/iOS-iphoneos/include/cpl_compressor.h +128 -0
  651. package/dist/prebuilt/iOS-iphoneos/include/cpl_config.h +215 -0
  652. package/dist/prebuilt/iOS-iphoneos/include/cpl_config_extras.h +34 -0
  653. package/dist/prebuilt/iOS-iphoneos/include/cpl_conv.h +433 -0
  654. package/dist/prebuilt/iOS-iphoneos/include/cpl_csv.h +87 -0
  655. package/dist/prebuilt/iOS-iphoneos/include/cpl_error.h +348 -0
  656. package/dist/prebuilt/iOS-iphoneos/include/cpl_hash_set.h +99 -0
  657. package/dist/prebuilt/iOS-iphoneos/include/cpl_http.h +265 -0
  658. package/dist/prebuilt/iOS-iphoneos/include/cpl_json.h +317 -0
  659. package/dist/prebuilt/iOS-iphoneos/include/cpl_list.h +75 -0
  660. package/dist/prebuilt/iOS-iphoneos/include/cpl_minixml.h +227 -0
  661. package/dist/prebuilt/iOS-iphoneos/include/cpl_multiproc.h +257 -0
  662. package/dist/prebuilt/iOS-iphoneos/include/cpl_port.h +1186 -0
  663. package/dist/prebuilt/iOS-iphoneos/include/cpl_progress.h +65 -0
  664. package/dist/prebuilt/iOS-iphoneos/include/cpl_quad_tree.h +118 -0
  665. package/dist/prebuilt/iOS-iphoneos/include/cpl_spawn.h +76 -0
  666. package/dist/prebuilt/iOS-iphoneos/include/cpl_string.h +876 -0
  667. package/dist/prebuilt/iOS-iphoneos/include/cpl_time.h +45 -0
  668. package/dist/prebuilt/iOS-iphoneos/include/cpl_virtualmem.h +381 -0
  669. package/dist/prebuilt/iOS-iphoneos/include/cpl_vsi.h +798 -0
  670. package/dist/prebuilt/iOS-iphoneos/include/cpl_vsi_error.h +69 -0
  671. package/dist/prebuilt/iOS-iphoneos/include/cpl_vsi_virtual.h +547 -0
  672. package/dist/prebuilt/iOS-iphoneos/include/cplkeywordparser.h +77 -0
  673. package/dist/prebuilt/iOS-iphoneos/include/gdal.h +2550 -0
  674. package/dist/prebuilt/iOS-iphoneos/include/gdal_alg.h +730 -0
  675. package/dist/prebuilt/iOS-iphoneos/include/gdal_alg_priv.h +399 -0
  676. package/dist/prebuilt/iOS-iphoneos/include/gdal_csv.h +41 -0
  677. package/dist/prebuilt/iOS-iphoneos/include/gdal_frmts.h +249 -0
  678. package/dist/prebuilt/iOS-iphoneos/include/gdal_mdreader.h +256 -0
  679. package/dist/prebuilt/iOS-iphoneos/include/gdal_pam.h +473 -0
  680. package/dist/prebuilt/iOS-iphoneos/include/gdal_priv.h +4389 -0
  681. package/dist/prebuilt/iOS-iphoneos/include/gdal_proxy.h +457 -0
  682. package/dist/prebuilt/iOS-iphoneos/include/gdal_rat.h +406 -0
  683. package/dist/prebuilt/iOS-iphoneos/include/gdal_simplesurf.h +595 -0
  684. package/dist/prebuilt/iOS-iphoneos/include/gdal_utils.h +329 -0
  685. package/dist/prebuilt/iOS-iphoneos/include/gdal_version.h +33 -0
  686. package/dist/prebuilt/iOS-iphoneos/include/gdal_vrt.h +105 -0
  687. package/dist/prebuilt/iOS-iphoneos/include/gdalcachedpixelaccessor.h +455 -0
  688. package/dist/prebuilt/iOS-iphoneos/include/gdalgeorefpamdataset.h +89 -0
  689. package/dist/prebuilt/iOS-iphoneos/include/gdalgrid.h +118 -0
  690. package/dist/prebuilt/iOS-iphoneos/include/gdalgrid_priv.h +83 -0
  691. package/dist/prebuilt/iOS-iphoneos/include/gdaljp2abstractdataset.h +77 -0
  692. package/dist/prebuilt/iOS-iphoneos/include/gdaljp2metadata.h +253 -0
  693. package/dist/prebuilt/iOS-iphoneos/include/gdalpansharpen.h +274 -0
  694. package/dist/prebuilt/iOS-iphoneos/include/gdalsubdatasetinfo.h +120 -0
  695. package/dist/prebuilt/iOS-iphoneos/include/gdalwarper.h +635 -0
  696. package/dist/prebuilt/iOS-iphoneos/include/gnm.h +750 -0
  697. package/dist/prebuilt/iOS-iphoneos/include/gnm_api.h +101 -0
  698. package/dist/prebuilt/iOS-iphoneos/include/gnmgraph.h +258 -0
  699. package/dist/prebuilt/iOS-iphoneos/include/memdataset.h +187 -0
  700. package/dist/prebuilt/iOS-iphoneos/include/ogr_api.h +1036 -0
  701. package/dist/prebuilt/iOS-iphoneos/include/ogr_core.h +1338 -0
  702. package/dist/prebuilt/iOS-iphoneos/include/ogr_feature.h +1997 -0
  703. package/dist/prebuilt/iOS-iphoneos/include/ogr_featurestyle.h +874 -0
  704. package/dist/prebuilt/iOS-iphoneos/include/ogr_geocoding.h +62 -0
  705. package/dist/prebuilt/iOS-iphoneos/include/ogr_geomcoordinateprecision.h +95 -0
  706. package/dist/prebuilt/iOS-iphoneos/include/ogr_geometry.h +4282 -0
  707. package/dist/prebuilt/iOS-iphoneos/include/ogr_p.h +341 -0
  708. package/dist/prebuilt/iOS-iphoneos/include/ogr_recordbatch.h +120 -0
  709. package/dist/prebuilt/iOS-iphoneos/include/ogr_spatialref.h +1021 -0
  710. package/dist/prebuilt/iOS-iphoneos/include/ogr_srs_api.h +1102 -0
  711. package/dist/prebuilt/iOS-iphoneos/include/ogr_swq.h +493 -0
  712. package/dist/prebuilt/iOS-iphoneos/include/ogrsf_frmts.h +749 -0
  713. package/dist/prebuilt/iOS-iphoneos/include/rawdataset.h +271 -0
  714. package/dist/prebuilt/iOS-iphoneos/include/vrtdataset.h +2298 -0
  715. package/dist/prebuilt/iOS-iphoneos/share/gdal/GDALLogoBW.svg +138 -0
  716. package/dist/prebuilt/iOS-iphoneos/share/gdal/GDALLogoColor.svg +126 -0
  717. package/dist/prebuilt/iOS-iphoneos/share/gdal/GDALLogoGS.svg +126 -0
  718. package/dist/prebuilt/iOS-iphoneos/share/gdal/LICENSE.TXT +467 -0
  719. package/dist/prebuilt/iOS-iphoneos/share/gdal/MM_m_idofic.csv +321 -0
  720. package/dist/prebuilt/iOS-iphoneos/share/gdal/cubewerx_extra.wkt +48 -0
  721. package/dist/prebuilt/iOS-iphoneos/share/gdal/default.rsc +0 -0
  722. package/dist/prebuilt/iOS-iphoneos/share/gdal/ecw_cs.wkt +1453 -0
  723. package/dist/prebuilt/iOS-iphoneos/share/gdal/epsg.wkt +1 -0
  724. package/dist/prebuilt/iOS-iphoneos/share/gdal/esri_StatePlane_extra.wkt +631 -0
  725. package/dist/prebuilt/iOS-iphoneos/share/gdal/gdalicon.png +0 -0
  726. package/dist/prebuilt/iOS-iphoneos/share/gdal/gdalinfo_output.schema.json +346 -0
  727. package/dist/prebuilt/iOS-iphoneos/share/gdal/gdalmdiminfo_output.schema.json +321 -0
  728. package/dist/prebuilt/iOS-iphoneos/share/gdal/gdaltileindex.xsd +269 -0
  729. package/dist/prebuilt/iOS-iphoneos/share/gdal/gdalvrt.xsd +880 -0
  730. package/dist/prebuilt/iOS-iphoneos/share/gdal/gfs.xsd +246 -0
  731. package/dist/prebuilt/iOS-iphoneos/share/gdal/gml_registry.xml +117 -0
  732. package/dist/prebuilt/iOS-iphoneos/share/gdal/gml_registry.xsd +66 -0
  733. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_center.csv +251 -0
  734. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_process.csv +102 -0
  735. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_subcenter.csv +63 -0
  736. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_0.csv +261 -0
  737. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_1.csv +261 -0
  738. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_13.csv +261 -0
  739. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_14.csv +261 -0
  740. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_15.csv +261 -0
  741. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_16.csv +261 -0
  742. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_17.csv +11 -0
  743. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_18.csv +261 -0
  744. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_19.csv +261 -0
  745. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_190.csv +261 -0
  746. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_191.csv +261 -0
  747. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_2.csv +261 -0
  748. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_20.csv +261 -0
  749. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_21.csv +261 -0
  750. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_3.csv +261 -0
  751. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_4.csv +261 -0
  752. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_5.csv +261 -0
  753. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_6.csv +261 -0
  754. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_0_7.csv +261 -0
  755. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_10_0.csv +261 -0
  756. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_10_1.csv +261 -0
  757. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_10_191.csv +261 -0
  758. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_10_2.csv +261 -0
  759. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_10_3.csv +261 -0
  760. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_10_4.csv +261 -0
  761. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_1_0.csv +261 -0
  762. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_1_1.csv +261 -0
  763. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_1_2.csv +261 -0
  764. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_20_0.csv +261 -0
  765. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_20_1.csv +261 -0
  766. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_20_2.csv +261 -0
  767. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_2_0.csv +261 -0
  768. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_2_3.csv +261 -0
  769. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_2_4.csv +261 -0
  770. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_2_5.csv +261 -0
  771. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_2_6.csv +261 -0
  772. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_3_0.csv +261 -0
  773. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_3_1.csv +261 -0
  774. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_3_2.csv +28 -0
  775. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_3_3.csv +8 -0
  776. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_3_4.csv +14 -0
  777. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_3_5.csv +11 -0
  778. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_3_6.csv +11 -0
  779. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_0.csv +261 -0
  780. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_1.csv +261 -0
  781. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_10.csv +261 -0
  782. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_2.csv +261 -0
  783. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_3.csv +261 -0
  784. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_4.csv +261 -0
  785. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_5.csv +261 -0
  786. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_6.csv +261 -0
  787. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_7.csv +261 -0
  788. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_8.csv +261 -0
  789. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_4_9.csv +261 -0
  790. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_local_Canada.csv +5 -0
  791. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_local_HPC.csv +2 -0
  792. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_local_MRMS.csv +175 -0
  793. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_local_NCEP.csv +401 -0
  794. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_local_NDFD.csv +38 -0
  795. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_2_local_index.csv +7 -0
  796. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_4_5.csv +261 -0
  797. package/dist/prebuilt/iOS-iphoneos/share/gdal/grib2_table_versions.csv +3 -0
  798. package/dist/prebuilt/iOS-iphoneos/share/gdal/gt_datum.csv +229 -0
  799. package/dist/prebuilt/iOS-iphoneos/share/gdal/gt_ellips.csv +24 -0
  800. package/dist/prebuilt/iOS-iphoneos/share/gdal/header.dxf +1124 -0
  801. package/dist/prebuilt/iOS-iphoneos/share/gdal/inspire_cp_BasicPropertyUnit.gfs +57 -0
  802. package/dist/prebuilt/iOS-iphoneos/share/gdal/inspire_cp_CadastralBoundary.gfs +60 -0
  803. package/dist/prebuilt/iOS-iphoneos/share/gdal/inspire_cp_CadastralParcel.gfs +81 -0
  804. package/dist/prebuilt/iOS-iphoneos/share/gdal/inspire_cp_CadastralZoning.gfs +161 -0
  805. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_AdmArea.gfs +59 -0
  806. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_AdmBdry.gfs +49 -0
  807. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_AdmPt.gfs +59 -0
  808. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_BldA.gfs +54 -0
  809. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_BldL.gfs +54 -0
  810. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_Cntr.gfs +54 -0
  811. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_CommBdry.gfs +49 -0
  812. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_CommPt.gfs +59 -0
  813. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_Cstline.gfs +54 -0
  814. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_ElevPt.gfs +54 -0
  815. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_GCP.gfs +94 -0
  816. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_LeveeEdge.gfs +49 -0
  817. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_RailCL.gfs +54 -0
  818. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_RdASL.gfs +44 -0
  819. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_RdArea.gfs +54 -0
  820. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_RdCompt.gfs +59 -0
  821. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_RdEdg.gfs +59 -0
  822. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_RdMgtBdry.gfs +49 -0
  823. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_RdSgmtA.gfs +59 -0
  824. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_RvrMgtBdry.gfs +49 -0
  825. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_SBAPt.gfs +49 -0
  826. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_SBArea.gfs +54 -0
  827. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_SBBdry.gfs +44 -0
  828. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_WA.gfs +54 -0
  829. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_WL.gfs +54 -0
  830. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_WStrA.gfs +54 -0
  831. package/dist/prebuilt/iOS-iphoneos/share/gdal/jpfgdgml_WStrL.gfs +54 -0
  832. package/dist/prebuilt/iOS-iphoneos/share/gdal/nitf_spec.xml +3306 -0
  833. package/dist/prebuilt/iOS-iphoneos/share/gdal/nitf_spec.xsd +189 -0
  834. package/dist/prebuilt/iOS-iphoneos/share/gdal/ogrinfo_output.schema.json +528 -0
  835. package/dist/prebuilt/iOS-iphoneos/share/gdal/ogrvrt.xsd +546 -0
  836. package/dist/prebuilt/iOS-iphoneos/share/gdal/osmconf.ini +132 -0
  837. package/dist/prebuilt/iOS-iphoneos/share/gdal/ozi_datum.csv +131 -0
  838. package/dist/prebuilt/iOS-iphoneos/share/gdal/ozi_ellips.csv +35 -0
  839. package/dist/prebuilt/iOS-iphoneos/share/gdal/pci_datum.txt +530 -0
  840. package/dist/prebuilt/iOS-iphoneos/share/gdal/pci_ellips.txt +129 -0
  841. package/dist/prebuilt/iOS-iphoneos/share/gdal/pdfcomposition.xsd +721 -0
  842. package/dist/prebuilt/iOS-iphoneos/share/gdal/ruian_vf_ob_v1.gfs +1455 -0
  843. package/dist/prebuilt/iOS-iphoneos/share/gdal/ruian_vf_st_uvoh_v1.gfs +86 -0
  844. package/dist/prebuilt/iOS-iphoneos/share/gdal/ruian_vf_st_v1.gfs +1489 -0
  845. package/dist/prebuilt/iOS-iphoneos/share/gdal/ruian_vf_v1.gfs +2126 -0
  846. package/dist/prebuilt/iOS-iphoneos/share/gdal/s57agencies.csv +249 -0
  847. package/dist/prebuilt/iOS-iphoneos/share/gdal/s57attributes.csv +484 -0
  848. package/dist/prebuilt/iOS-iphoneos/share/gdal/s57expectedinput.csv +1008 -0
  849. package/dist/prebuilt/iOS-iphoneos/share/gdal/s57objectclasses.csv +287 -0
  850. package/dist/prebuilt/iOS-iphoneos/share/gdal/seed_2d.dgn +0 -0
  851. package/dist/prebuilt/iOS-iphoneos/share/gdal/seed_3d.dgn +0 -0
  852. package/dist/prebuilt/iOS-iphoneos/share/gdal/stateplane.csv +259 -0
  853. package/dist/prebuilt/iOS-iphoneos/share/gdal/tms_LINZAntarticaMapTileGrid.json +190 -0
  854. package/dist/prebuilt/iOS-iphoneos/share/gdal/tms_MapML_APSTILE.json +268 -0
  855. package/dist/prebuilt/iOS-iphoneos/share/gdal/tms_MapML_CBMTILE.json +346 -0
  856. package/dist/prebuilt/iOS-iphoneos/share/gdal/tms_NZTM2000.json +243 -0
  857. package/dist/prebuilt/iOS-iphoneos/share/gdal/trailer.dxf +434 -0
  858. package/dist/prebuilt/iOS-iphoneos/share/gdal/vdv452.xml +367 -0
  859. package/dist/prebuilt/iOS-iphoneos/share/gdal/vdv452.xsd +63 -0
  860. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_atomic_ops.h +106 -0
  861. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_auto_close.h +89 -0
  862. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_compressor.h +128 -0
  863. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_config.h +215 -0
  864. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_config_extras.h +34 -0
  865. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_conv.h +433 -0
  866. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_csv.h +87 -0
  867. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_error.h +348 -0
  868. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_hash_set.h +99 -0
  869. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_http.h +265 -0
  870. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_json.h +317 -0
  871. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_list.h +75 -0
  872. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_minixml.h +227 -0
  873. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_multiproc.h +257 -0
  874. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_port.h +1186 -0
  875. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_progress.h +65 -0
  876. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_quad_tree.h +118 -0
  877. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_spawn.h +76 -0
  878. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_string.h +876 -0
  879. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_time.h +45 -0
  880. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_virtualmem.h +381 -0
  881. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_vsi.h +798 -0
  882. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_vsi_error.h +69 -0
  883. package/dist/prebuilt/iOS-iphonesimulator/include/cpl_vsi_virtual.h +547 -0
  884. package/dist/prebuilt/iOS-iphonesimulator/include/cplkeywordparser.h +77 -0
  885. package/dist/prebuilt/iOS-iphonesimulator/include/gdal.h +2550 -0
  886. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_alg.h +730 -0
  887. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_alg_priv.h +399 -0
  888. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_csv.h +41 -0
  889. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_frmts.h +249 -0
  890. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_mdreader.h +256 -0
  891. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_pam.h +473 -0
  892. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_priv.h +4389 -0
  893. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_proxy.h +457 -0
  894. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_rat.h +406 -0
  895. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_simplesurf.h +595 -0
  896. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_utils.h +329 -0
  897. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_version.h +33 -0
  898. package/dist/prebuilt/iOS-iphonesimulator/include/gdal_vrt.h +105 -0
  899. package/dist/prebuilt/iOS-iphonesimulator/include/gdalcachedpixelaccessor.h +455 -0
  900. package/dist/prebuilt/iOS-iphonesimulator/include/gdalgeorefpamdataset.h +89 -0
  901. package/dist/prebuilt/iOS-iphonesimulator/include/gdalgrid.h +118 -0
  902. package/dist/prebuilt/iOS-iphonesimulator/include/gdalgrid_priv.h +83 -0
  903. package/dist/prebuilt/iOS-iphonesimulator/include/gdaljp2abstractdataset.h +77 -0
  904. package/dist/prebuilt/iOS-iphonesimulator/include/gdaljp2metadata.h +253 -0
  905. package/dist/prebuilt/iOS-iphonesimulator/include/gdalpansharpen.h +274 -0
  906. package/dist/prebuilt/iOS-iphonesimulator/include/gdalsubdatasetinfo.h +120 -0
  907. package/dist/prebuilt/iOS-iphonesimulator/include/gdalwarper.h +635 -0
  908. package/dist/prebuilt/iOS-iphonesimulator/include/gnm.h +750 -0
  909. package/dist/prebuilt/iOS-iphonesimulator/include/gnm_api.h +101 -0
  910. package/dist/prebuilt/iOS-iphonesimulator/include/gnmgraph.h +258 -0
  911. package/dist/prebuilt/iOS-iphonesimulator/include/memdataset.h +187 -0
  912. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_api.h +1036 -0
  913. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_core.h +1338 -0
  914. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_feature.h +1997 -0
  915. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_featurestyle.h +874 -0
  916. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_geocoding.h +62 -0
  917. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_geomcoordinateprecision.h +95 -0
  918. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_geometry.h +4282 -0
  919. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_p.h +341 -0
  920. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_recordbatch.h +120 -0
  921. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_spatialref.h +1021 -0
  922. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_srs_api.h +1102 -0
  923. package/dist/prebuilt/iOS-iphonesimulator/include/ogr_swq.h +493 -0
  924. package/dist/prebuilt/iOS-iphonesimulator/include/ogrsf_frmts.h +749 -0
  925. package/dist/prebuilt/iOS-iphonesimulator/include/rawdataset.h +271 -0
  926. package/dist/prebuilt/iOS-iphonesimulator/include/vrtdataset.h +2298 -0
  927. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/GDALLogoBW.svg +138 -0
  928. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/GDALLogoColor.svg +126 -0
  929. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/GDALLogoGS.svg +126 -0
  930. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/LICENSE.TXT +467 -0
  931. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/MM_m_idofic.csv +321 -0
  932. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/cubewerx_extra.wkt +48 -0
  933. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/default.rsc +0 -0
  934. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/ecw_cs.wkt +1453 -0
  935. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/epsg.wkt +1 -0
  936. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/esri_StatePlane_extra.wkt +631 -0
  937. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gdalicon.png +0 -0
  938. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gdalinfo_output.schema.json +346 -0
  939. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gdalmdiminfo_output.schema.json +321 -0
  940. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gdaltileindex.xsd +269 -0
  941. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gdalvrt.xsd +880 -0
  942. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gfs.xsd +246 -0
  943. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gml_registry.xml +117 -0
  944. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gml_registry.xsd +66 -0
  945. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_center.csv +251 -0
  946. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_process.csv +102 -0
  947. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_subcenter.csv +63 -0
  948. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_0.csv +261 -0
  949. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_1.csv +261 -0
  950. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_13.csv +261 -0
  951. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_14.csv +261 -0
  952. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_15.csv +261 -0
  953. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_16.csv +261 -0
  954. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_17.csv +11 -0
  955. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_18.csv +261 -0
  956. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_19.csv +261 -0
  957. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_190.csv +261 -0
  958. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_191.csv +261 -0
  959. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_2.csv +261 -0
  960. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_20.csv +261 -0
  961. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_21.csv +261 -0
  962. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_3.csv +261 -0
  963. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_4.csv +261 -0
  964. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_5.csv +261 -0
  965. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_6.csv +261 -0
  966. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_0_7.csv +261 -0
  967. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_10_0.csv +261 -0
  968. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_10_1.csv +261 -0
  969. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_10_191.csv +261 -0
  970. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_10_2.csv +261 -0
  971. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_10_3.csv +261 -0
  972. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_10_4.csv +261 -0
  973. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_1_0.csv +261 -0
  974. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_1_1.csv +261 -0
  975. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_1_2.csv +261 -0
  976. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_20_0.csv +261 -0
  977. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_20_1.csv +261 -0
  978. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_20_2.csv +261 -0
  979. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_2_0.csv +261 -0
  980. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_2_3.csv +261 -0
  981. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_2_4.csv +261 -0
  982. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_2_5.csv +261 -0
  983. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_2_6.csv +261 -0
  984. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_3_0.csv +261 -0
  985. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_3_1.csv +261 -0
  986. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_3_2.csv +28 -0
  987. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_3_3.csv +8 -0
  988. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_3_4.csv +14 -0
  989. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_3_5.csv +11 -0
  990. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_3_6.csv +11 -0
  991. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_0.csv +261 -0
  992. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_1.csv +261 -0
  993. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_10.csv +261 -0
  994. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_2.csv +261 -0
  995. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_3.csv +261 -0
  996. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_4.csv +261 -0
  997. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_5.csv +261 -0
  998. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_6.csv +261 -0
  999. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_7.csv +261 -0
  1000. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_8.csv +261 -0
  1001. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_4_9.csv +261 -0
  1002. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_local_Canada.csv +5 -0
  1003. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_local_HPC.csv +2 -0
  1004. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_local_MRMS.csv +175 -0
  1005. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_local_NCEP.csv +401 -0
  1006. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_local_NDFD.csv +38 -0
  1007. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_2_local_index.csv +7 -0
  1008. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_4_5.csv +261 -0
  1009. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/grib2_table_versions.csv +3 -0
  1010. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gt_datum.csv +229 -0
  1011. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/gt_ellips.csv +24 -0
  1012. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/header.dxf +1124 -0
  1013. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/inspire_cp_BasicPropertyUnit.gfs +57 -0
  1014. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/inspire_cp_CadastralBoundary.gfs +60 -0
  1015. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/inspire_cp_CadastralParcel.gfs +81 -0
  1016. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/inspire_cp_CadastralZoning.gfs +161 -0
  1017. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_AdmArea.gfs +59 -0
  1018. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_AdmBdry.gfs +49 -0
  1019. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_AdmPt.gfs +59 -0
  1020. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_BldA.gfs +54 -0
  1021. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_BldL.gfs +54 -0
  1022. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_Cntr.gfs +54 -0
  1023. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_CommBdry.gfs +49 -0
  1024. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_CommPt.gfs +59 -0
  1025. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_Cstline.gfs +54 -0
  1026. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_ElevPt.gfs +54 -0
  1027. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_GCP.gfs +94 -0
  1028. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_LeveeEdge.gfs +49 -0
  1029. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_RailCL.gfs +54 -0
  1030. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_RdASL.gfs +44 -0
  1031. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_RdArea.gfs +54 -0
  1032. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_RdCompt.gfs +59 -0
  1033. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_RdEdg.gfs +59 -0
  1034. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_RdMgtBdry.gfs +49 -0
  1035. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_RdSgmtA.gfs +59 -0
  1036. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_RvrMgtBdry.gfs +49 -0
  1037. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_SBAPt.gfs +49 -0
  1038. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_SBArea.gfs +54 -0
  1039. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_SBBdry.gfs +44 -0
  1040. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_WA.gfs +54 -0
  1041. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_WL.gfs +54 -0
  1042. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_WStrA.gfs +54 -0
  1043. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/jpfgdgml_WStrL.gfs +54 -0
  1044. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/nitf_spec.xml +3306 -0
  1045. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/nitf_spec.xsd +189 -0
  1046. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/ogrinfo_output.schema.json +528 -0
  1047. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/ogrvrt.xsd +546 -0
  1048. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/osmconf.ini +132 -0
  1049. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/ozi_datum.csv +131 -0
  1050. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/ozi_ellips.csv +35 -0
  1051. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/pci_datum.txt +530 -0
  1052. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/pci_ellips.txt +129 -0
  1053. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/pdfcomposition.xsd +721 -0
  1054. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/ruian_vf_ob_v1.gfs +1455 -0
  1055. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/ruian_vf_st_uvoh_v1.gfs +86 -0
  1056. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/ruian_vf_st_v1.gfs +1489 -0
  1057. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/ruian_vf_v1.gfs +2126 -0
  1058. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/s57agencies.csv +249 -0
  1059. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/s57attributes.csv +484 -0
  1060. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/s57expectedinput.csv +1008 -0
  1061. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/s57objectclasses.csv +287 -0
  1062. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/seed_2d.dgn +0 -0
  1063. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/seed_3d.dgn +0 -0
  1064. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/stateplane.csv +259 -0
  1065. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/tms_LINZAntarticaMapTileGrid.json +190 -0
  1066. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/tms_MapML_APSTILE.json +268 -0
  1067. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/tms_MapML_CBMTILE.json +346 -0
  1068. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/tms_NZTM2000.json +243 -0
  1069. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/trailer.dxf +434 -0
  1070. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/vdv452.xml +367 -0
  1071. package/dist/prebuilt/iOS-iphonesimulator/share/gdal/vdv452.xsd +63 -0
  1072. package/package.json +40 -0
@@ -0,0 +1,1455 @@
1
+ <GMLFeatureClassList>
2
+ <!-- Obce -->
3
+ <GMLFeatureClass>
4
+ <Name>Obce</Name>
5
+ <ElementPath>Data|Obce|Obec</ElementPath>
6
+ <!-- Geometrie definičního bodu obce -->
7
+ <GeomPropertyDefn>
8
+ <Name>DefinicniBod</Name>
9
+ <ElementPath>Geometrie|DefinicniBod</ElementPath>
10
+ <Type>MultiPoint</Type>
11
+ </GeomPropertyDefn>
12
+ <!-- Originální geometrie hranice obce -->
13
+ <GeomPropertyDefn>
14
+ <Name>OriginalniHranice</Name>
15
+ <ElementPath>Geometrie|OriginalniHranice</ElementPath>
16
+ <Type>MultiPolygon</Type>
17
+ </GeomPropertyDefn>
18
+ <!-- Generalizovaná geometrie hranice obce (stupeň generalizace 3) -->
19
+ <GeomPropertyDefn>
20
+ <Name>GeneralizovaneHranice</Name>
21
+ <ElementPath>Geometrie|GeneralizovaneHranice3</ElementPath>
22
+ <Type>MultiPolygon</Type>
23
+ </GeomPropertyDefn>
24
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
25
+ <!-- Kód obce -->
26
+ <PropertyDefn>
27
+ <Name>Kod</Name>
28
+ <ElementPath>Kod</ElementPath>
29
+ <Type>Integer</Type>
30
+ </PropertyDefn>
31
+ <!-- Název obce -->
32
+ <PropertyDefn>
33
+ <Name>Nazev</Name>
34
+ <ElementPath>Nazev</ElementPath>
35
+ <Type>String</Type>
36
+ <Width>48</Width>
37
+ </PropertyDefn>
38
+ <!-- Identifikátor nesprávnosti na prvku -->
39
+ <PropertyDefn>
40
+ <Name>Nespravny</Name>
41
+ <ElementPath>Nespravny</ElementPath>
42
+ <Type>String</Type>
43
+ <Width>5</Width>
44
+ </PropertyDefn>
45
+ <!-- Status obce -->
46
+ <PropertyDefn>
47
+ <Name>StatusKod</Name>
48
+ <ElementPath>StatusKod</ElementPath>
49
+ <Type>Integer</Type>
50
+ </PropertyDefn>
51
+ <!-- Nadřazený okres -->
52
+ <PropertyDefn>
53
+ <Name>OkresKod</Name>
54
+ <ElementPath>Okres|Kod</ElementPath>
55
+ <Type>Integer</Type>
56
+ </PropertyDefn>
57
+ <!-- Nadřazený POU -->
58
+ <PropertyDefn>
59
+ <Name>PouKod</Name>
60
+ <ElementPath>Pou|Kod</ElementPath>
61
+ <Type>Integer</Type>
62
+ </PropertyDefn>
63
+ <!-- Začátek platnosti -->
64
+ <PropertyDefn>
65
+ <Name>PlatiOd</Name>
66
+ <ElementPath>PlatiOd</ElementPath>
67
+ <Type>String</Type>
68
+ <Width>19</Width>
69
+ </PropertyDefn>
70
+ <!-- Konec platnosti -->
71
+ <PropertyDefn>
72
+ <Name>PlatiDo</Name>
73
+ <ElementPath>PlatiDo</ElementPath>
74
+ <Type>String</Type>
75
+ <Width>19</Width>
76
+ </PropertyDefn>
77
+ <!-- ID transakce v RUIAN -->
78
+ <PropertyDefn>
79
+ <Name>IdTransakce</Name>
80
+ <ElementPath>IdTransakce</ElementPath>
81
+ <Type>Integer</Type>
82
+ <Subtype>Integer64</Subtype>
83
+ </PropertyDefn>
84
+ <!-- ID návrhu změn v ISUI -->
85
+ <PropertyDefn>
86
+ <Name>GlobalniIdNavrhuZmeny</Name>
87
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
88
+ <Type>Integer</Type>
89
+ <Subtype>Integer64</Subtype>
90
+ </PropertyDefn>
91
+ <!-- Mluvnické charakteristiky 2 až 7 pád -->
92
+ <PropertyDefn>
93
+ <Name>MluvnickeCharakteristikyPad2</Name>
94
+ <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
95
+ <Type>String</Type>
96
+ <Width>48</Width>
97
+ </PropertyDefn>
98
+ <PropertyDefn>
99
+ <Name>MluvnickeCharakteristikyPad3</Name>
100
+ <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
101
+ <Type>String</Type>
102
+ <Width>48</Width>
103
+ </PropertyDefn>
104
+ <PropertyDefn>
105
+ <Name>MluvnickeCharakteristikyPad4</Name>
106
+ <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
107
+ <Type>String</Type>
108
+ <Width>48</Width>
109
+ </PropertyDefn>
110
+ <PropertyDefn>
111
+ <Name>MluvnickeCharakteristikyPad6</Name>
112
+ <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
113
+ <Type>String</Type>
114
+ <Width>48</Width>
115
+ </PropertyDefn>
116
+ <PropertyDefn>
117
+ <Name>MluvnickeCharakteristikyPad7</Name>
118
+ <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
119
+ <Type>String</Type>
120
+ <Width>48</Width>
121
+ </PropertyDefn>
122
+ <!-- Text popisující vlajku obce -->
123
+ <PropertyDefn>
124
+ <Name>VlajkaText</Name>
125
+ <ElementPath>VlajkaText</ElementPath>
126
+ <Type>String</Type>
127
+ <Width>4000</Width>
128
+ </PropertyDefn>
129
+ <!-- Obrázek vlajky obce -->
130
+ <PropertyDefn>
131
+ <Name>VlajkaObrazek</Name>
132
+ <ElementPath>VlajkaObrazek</ElementPath>
133
+ <Type>Complex</Type> <!-- ??? -->
134
+ </PropertyDefn>
135
+ <!-- Text popisující znak obce -->
136
+ <PropertyDefn>
137
+ <Name>ZnakText</Name>
138
+ <ElementPath>ZnakText</ElementPath>
139
+ <Type>String</Type>
140
+ <Width>4000</Width>
141
+ </PropertyDefn>
142
+ <!-- Obrázek znaku obce -->
143
+ <PropertyDefn>
144
+ <Name>ZnakObrazek</Name>
145
+ <ElementPath>ZnakObrazek</ElementPath>
146
+ <Type>Complex</Type> <!-- ??? -->
147
+ </PropertyDefn>
148
+ <!-- Rozsah členění statutárního města na MOMC -->
149
+ <PropertyDefn>
150
+ <Name>CleneniSMRozsahKod</Name>
151
+ <ElementPath>CleneniSMRozsahKod</ElementPath>
152
+ <Type>Integer</Type>
153
+ </PropertyDefn>
154
+ <!-- Typ MOMC, na něž je statutární město rozčleněno -->
155
+ <PropertyDefn>
156
+ <Name>CleneniSMTypKod</Name>
157
+ <ElementPath>CleneniSMTypKod</ElementPath>
158
+ <Type>Integer</Type>
159
+ </PropertyDefn>
160
+ <!-- Kód územního celku v NUTS / LAU -->
161
+ <PropertyDefn>
162
+ <Name>NutsLau</Name>
163
+ <ElementPath>NutsLau</ElementPath>
164
+ <Type>String</Type>
165
+ <Width>12</Width>
166
+ </PropertyDefn>
167
+ <!-- Datum vzniku -->
168
+ <PropertyDefn>
169
+ <Name>DatumVzniku</Name>
170
+ <ElementPath>DatumVzniku</ElementPath>
171
+ <Type>String</Type>
172
+ <Width>19</Width>
173
+ </PropertyDefn>
174
+ </GMLFeatureClass>
175
+ <!-- Spravní obvody -->
176
+ <GMLFeatureClass>
177
+ <Name>SpravniObvody</Name>
178
+ <ElementPath>Data|SpravniObvody|SpravniObvod</ElementPath>
179
+ <!-- Geometrie definičního bodu správního obvodu-->
180
+ <GeomPropertyDefn>
181
+ <Name>DefinicniBod</Name>
182
+ <ElementPath>Geometrie|DefinicniBod</ElementPath>
183
+ <Type>Point</Type>
184
+ </GeomPropertyDefn>
185
+ <!-- Originální geometrie hranice správního obvodu -->
186
+ <GeomPropertyDefn>
187
+ <Name>OriginalniHranice</Name>
188
+ <ElementPath>Geometrie|OriginalniHranice</ElementPath>
189
+ <Type>MultiPolygon</Type>
190
+ </GeomPropertyDefn>
191
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
192
+ <!-- Kód správního obvodu -->
193
+ <PropertyDefn>
194
+ <Name>Kod</Name>
195
+ <ElementPath>Kod</ElementPath>
196
+ <Type>Integer</Type>
197
+ </PropertyDefn>
198
+ <!-- Název správního obvodu -->
199
+ <PropertyDefn>
200
+ <Name>Nazev</Name>
201
+ <ElementPath>Nazev</ElementPath>
202
+ <Type>String</Type>
203
+ <Width>32</Width>
204
+ </PropertyDefn>
205
+ <!-- Identifikátor nesprávnosti na prvku -->
206
+ <PropertyDefn>
207
+ <Name>Nespravny</Name>
208
+ <ElementPath>Nespravny</ElementPath>
209
+ <Type>String</Type>
210
+ <Width>5</Width>
211
+ </PropertyDefn>
212
+ <!-- Kód správniho MOMC -->
213
+ <PropertyDefn>
214
+ <Name>SpravniMomcKod</Name>
215
+ <ElementPath>SpravniMomcKod</ElementPath>
216
+ <Type>Integer</Type>
217
+ </PropertyDefn>
218
+ <!-- Nadřazená obec -->
219
+ <PropertyDefn>
220
+ <Name>ObecKod</Name>
221
+ <ElementPath>Obec|Kod</ElementPath>
222
+ <Type>Integer</Type>
223
+ </PropertyDefn>
224
+ <!-- Začátek platnosti -->
225
+ <PropertyDefn>
226
+ <Name>PlatiOd</Name>
227
+ <ElementPath>PlatiOd</ElementPath>
228
+ <Type>String</Type>
229
+ <Width>19</Width>
230
+ </PropertyDefn>
231
+ <!-- Konec platnosti -->
232
+ <PropertyDefn>
233
+ <Name>PlatiDo</Name>
234
+ <ElementPath>PlatiDo</ElementPath>
235
+ <Type>String</Type>
236
+ <Width>19</Width>
237
+ </PropertyDefn>
238
+ <!-- ID transakce v RUIAN -->
239
+ <PropertyDefn>
240
+ <Name>IdTransakce</Name>
241
+ <ElementPath>IdTransakce</ElementPath>
242
+ <Type>Integer</Type>
243
+ <Subtype>Integer64</Subtype>
244
+ </PropertyDefn>
245
+ <!-- ID návrhu změn v ISUI -->
246
+ <PropertyDefn>
247
+ <Name>GlobalniIdNavrhuZmeny</Name>
248
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
249
+ <Type>Integer</Type>
250
+ <Subtype>Integer64</Subtype>
251
+ </PropertyDefn>
252
+ <!-- Datum vzniku -->
253
+ <PropertyDefn>
254
+ <Name>DatumVzniku</Name>
255
+ <ElementPath>DatumVzniku</ElementPath>
256
+ <Type>String</Type>
257
+ <Width>19</Width>
258
+ </PropertyDefn>
259
+ </GMLFeatureClass>
260
+ <!-- MOP -->
261
+ <GMLFeatureClass>
262
+ <Name>Mop</Name>
263
+ <ElementPath>Data|Mop|Mop</ElementPath>
264
+ <!-- Geometrie definičního bodu MOP -->
265
+ <GeomPropertyDefn>
266
+ <Name>DefinicniBod</Name>
267
+ <ElementPath>Geometrie|DefinicniBod</ElementPath>
268
+ <Type>Point</Type>
269
+ </GeomPropertyDefn>
270
+ <!-- Originální geometrie hranice MOP -->
271
+ <GeomPropertyDefn>
272
+ <Name>OriginalniHranice</Name>
273
+ <ElementPath>Geometrie|OriginalniHranice</ElementPath>
274
+ <Type>MultiPolygon</Type>
275
+ </GeomPropertyDefn>
276
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
277
+ <!-- Kód MOP -->
278
+ <PropertyDefn>
279
+ <Name>Kod</Name>
280
+ <ElementPath>Kod</ElementPath>
281
+ <Type>Integer</Type>
282
+ </PropertyDefn>
283
+ <!-- Název MOP -->
284
+ <PropertyDefn>
285
+ <Name>Nazev</Name>
286
+ <ElementPath>Nazev</ElementPath>
287
+ <Type>String</Type>
288
+ <Width>32</Width>
289
+ </PropertyDefn>
290
+ <!-- Identifikátor nesprávnosti na prvku -->
291
+ <PropertyDefn>
292
+ <Name>Nespravny</Name>
293
+ <ElementPath>Nespravny</ElementPath>
294
+ <Type>String</Type>
295
+ <Width>5</Width>
296
+ </PropertyDefn>
297
+ <!-- Nadřazená obec -->
298
+ <PropertyDefn>
299
+ <Name>ObecKod</Name>
300
+ <ElementPath>Obec|Kod</ElementPath>
301
+ <Type>Integer</Type>
302
+ </PropertyDefn>
303
+ <!-- Začátek platnosti -->
304
+ <PropertyDefn>
305
+ <Name>PlatiOd</Name>
306
+ <ElementPath>PlatiOd</ElementPath>
307
+ <Type>String</Type>
308
+ <Width>19</Width>
309
+ </PropertyDefn>
310
+ <!-- Konec platnosti -->
311
+ <PropertyDefn>
312
+ <Name>PlatiDo</Name>
313
+ <ElementPath>PlatiDo</ElementPath>
314
+ <Type>String</Type>
315
+ <Width>19</Width>
316
+ </PropertyDefn>
317
+ <!-- ID transakce v RUIAN -->
318
+ <PropertyDefn>
319
+ <Name>IdTransakce</Name>
320
+ <ElementPath>IdTransakce</ElementPath>
321
+ <Type>Integer</Type>
322
+ <Subtype>Integer64</Subtype>
323
+ </PropertyDefn>
324
+ <!-- ID návrhu změn v ISUI -->
325
+ <PropertyDefn>
326
+ <Name>GlobalniIdNavrhuZmeny</Name>
327
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
328
+ <Type>Integer</Type>
329
+ <Subtype>Integer64</Subtype>
330
+ </PropertyDefn>
331
+ <!-- Datum vzniku -->
332
+ <PropertyDefn>
333
+ <Name>DatumVzniku</Name>
334
+ <ElementPath>DatumVzniku</ElementPath>
335
+ <Type>String</Type>
336
+ <Width>19</Width>
337
+ </PropertyDefn>
338
+ </GMLFeatureClass>
339
+ <!-- MOMC -->
340
+ <GMLFeatureClass>
341
+ <Name>Momc</Name>
342
+ <ElementPath>Data|Momc|Momc</ElementPath>
343
+ <!-- Geometrie definičního bodu MOMC -->
344
+ <GeomPropertyDefn>
345
+ <Name>DefinicniBod</Name>
346
+ <ElementPath>Geometrie|DefinicniBod</ElementPath>
347
+ <Type>Point</Type>
348
+ </GeomPropertyDefn>
349
+ <!-- Originální geometrie hranice MOMC -->
350
+ <GeomPropertyDefn>
351
+ <Name>OriginalniHranice</Name>
352
+ <ElementPath>Geometrie|OriginalniHranice</ElementPath>
353
+ <Type>MultiPolygon</Type>
354
+ </GeomPropertyDefn>
355
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
356
+ <!-- Kód MOMC -->
357
+ <PropertyDefn>
358
+ <Name>Kod</Name>
359
+ <ElementPath>Kod</ElementPath>
360
+ <Type>Integer</Type>
361
+ </PropertyDefn>
362
+ <!-- Název MOMC -->
363
+ <PropertyDefn>
364
+ <Name>Nazev</Name>
365
+ <ElementPath>Nazev</ElementPath>
366
+ <Type>String</Type>
367
+ <Width>48</Width>
368
+ </PropertyDefn>
369
+ <!-- Identifikátor nesprávnosti na prvku -->
370
+ <PropertyDefn>
371
+ <Name>Nespravny</Name>
372
+ <ElementPath>Nespravny</ElementPath>
373
+ <Type>String</Type>
374
+ <Width>5</Width>
375
+ </PropertyDefn>
376
+ <!-- Nadřazená MOP -->
377
+ <PropertyDefn>
378
+ <Name>MopKod</Name>
379
+ <ElementPath>Mop|Kod</ElementPath>
380
+ <Type>Integer</Type>
381
+ </PropertyDefn>
382
+ <!-- Nadřazená obec -->
383
+ <PropertyDefn>
384
+ <Name>ObecKod</Name>
385
+ <ElementPath>Obec|Kod</ElementPath>
386
+ <Type>Integer</Type>
387
+ </PropertyDefn>
388
+ <!-- Nadřazený správní obvod -->
389
+ <PropertyDefn>
390
+ <Name>SpravniObvodKod</Name>
391
+ <ElementPath>SpravniObvod|Kod</ElementPath>
392
+ <Type>Integer</Type>
393
+ </PropertyDefn>
394
+ <!-- Začátek platnosti -->
395
+ <PropertyDefn>
396
+ <Name>PlatiOd</Name>
397
+ <ElementPath>PlatiOd</ElementPath>
398
+ <Type>String</Type>
399
+ <Width>19</Width>
400
+ </PropertyDefn>
401
+ <!-- Konec platnosti -->
402
+ <PropertyDefn>
403
+ <Name>PlatiDo</Name>
404
+ <ElementPath>PlatiDo</ElementPath>
405
+ <Type>String</Type>
406
+ <Width>19</Width>
407
+ </PropertyDefn>
408
+ <!-- ID transakce v RUIAN -->
409
+ <PropertyDefn>
410
+ <Name>IdTransakce</Name>
411
+ <ElementPath>IdTransakce</ElementPath>
412
+ <Type>Integer</Type>
413
+ <Subtype>Integer64</Subtype>
414
+ </PropertyDefn>
415
+ <!-- ID návrhu změn v ISUI -->
416
+ <PropertyDefn>
417
+ <Name>GlobalniIdNavrhuZmeny</Name>
418
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
419
+ <Type>Integer</Type>
420
+ <Subtype>Integer64</Subtype>
421
+ </PropertyDefn>
422
+ <!-- Text popisující vlajku MOMC -->
423
+ <PropertyDefn>
424
+ <Name>VlajkaText</Name>
425
+ <ElementPath>VlajkaText</ElementPath>
426
+ <Type>String</Type>
427
+ <Width>4000</Width>
428
+ </PropertyDefn>
429
+ <!-- Obrázek vlajky MOMC -->
430
+ <PropertyDefn>
431
+ <Name>VlajkaObrazek</Name>
432
+ <ElementPath>VlajkaObrazek</ElementPath>
433
+ <Type>Complex</Type> <!-- ??? -->
434
+ </PropertyDefn>
435
+ <!-- Mluvnické charakteristiky 2 až 7 pád -->
436
+ <PropertyDefn>
437
+ <Name>MluvnickeCharakteristikyPad2</Name>
438
+ <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
439
+ <Type>String</Type>
440
+ <Width>48</Width>
441
+ </PropertyDefn>
442
+ <PropertyDefn>
443
+ <Name>MluvnickeCharakteristikyPad3</Name>
444
+ <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
445
+ <Type>String</Type>
446
+ <Width>48</Width>
447
+ </PropertyDefn>
448
+ <PropertyDefn>
449
+ <Name>MluvnickeCharakteristikyPad4</Name>
450
+ <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
451
+ <Type>String</Type>
452
+ <Width>48</Width>
453
+ </PropertyDefn>
454
+ <PropertyDefn>
455
+ <Name>MluvnickeCharakteristikyPad6</Name>
456
+ <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
457
+ <Type>String</Type>
458
+ <Width>48</Width>
459
+ </PropertyDefn>
460
+ <PropertyDefn>
461
+ <Name>MluvnickeCharakteristikyPad7</Name>
462
+ <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
463
+ <Type>String</Type>
464
+ <Width>48</Width>
465
+ </PropertyDefn>
466
+ <!-- Text popisující znak MOMC -->
467
+ <PropertyDefn>
468
+ <Name>ZnakText</Name>
469
+ <ElementPath>ZnakText</ElementPath>
470
+ <Type>String</Type>
471
+ <Width>4000</Width>
472
+ </PropertyDefn>
473
+ <!-- Obrázek znaku MOMC -->
474
+ <PropertyDefn>
475
+ <Name>ZnakObrazek</Name>
476
+ <ElementPath>ZnakObrazek</ElementPath>
477
+ <Type>Complex</Type> <!-- ??? -->
478
+ </PropertyDefn>
479
+ <!-- Datum vzniku -->
480
+ <PropertyDefn>
481
+ <Name>DatumVzniku</Name>
482
+ <ElementPath>DatumVzniku</ElementPath>
483
+ <Type>String</Type>
484
+ <Width>19</Width>
485
+ </PropertyDefn>
486
+ </GMLFeatureClass>
487
+ <!-- CastiObci -->
488
+ <GMLFeatureClass>
489
+ <Name>CastiObci</Name>
490
+ <ElementPath>Data|CastiObci|CastObce</ElementPath>
491
+ <!-- Geometrie definičního bodu části obce -->
492
+ <GeomPropertyDefn>
493
+ <Name>DefinicniBod</Name>
494
+ <ElementPath>Geometrie|DefinicniBod</ElementPath>
495
+ <Type>Point</Type>
496
+ </GeomPropertyDefn>
497
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
498
+ <!-- Kód části obce -->
499
+ <PropertyDefn>
500
+ <Name>Kod</Name>
501
+ <ElementPath>Kod</ElementPath>
502
+ <Type>Integer</Type>
503
+ </PropertyDefn>
504
+ <!-- Název části obce -->
505
+ <PropertyDefn>
506
+ <Name>Nazev</Name>
507
+ <ElementPath>Nazev</ElementPath>
508
+ <Type>String</Type>
509
+ <Width>48</Width>
510
+ </PropertyDefn>
511
+ <!-- Identifikátor nesprávnosti na prvku -->
512
+ <PropertyDefn>
513
+ <Name>Nespravny</Name>
514
+ <ElementPath>Nespravny</ElementPath>
515
+ <Type>String</Type>
516
+ <Width>5</Width>
517
+ </PropertyDefn>
518
+ <!-- Nadřazená obec -->
519
+ <PropertyDefn>
520
+ <Name>ObecKod</Name>
521
+ <ElementPath>Obec|Kod</ElementPath>
522
+ <Type>Integer</Type>
523
+ </PropertyDefn>
524
+ <!-- Začátek platnosti -->
525
+ <PropertyDefn>
526
+ <Name>PlatiOd</Name>
527
+ <ElementPath>PlatiOd</ElementPath>
528
+ <Type>String</Type>
529
+ <Width>19</Width>
530
+ </PropertyDefn>
531
+ <!-- Konec platnosti -->
532
+ <PropertyDefn>
533
+ <Name>PlatiDo</Name>
534
+ <ElementPath>PlatiDo</ElementPath>
535
+ <Type>String</Type>
536
+ <Width>19</Width>
537
+ </PropertyDefn>
538
+ <!-- ID transakce v RUIAN -->
539
+ <PropertyDefn>
540
+ <Name>IdTransakce</Name>
541
+ <ElementPath>IdTransakce</ElementPath>
542
+ <Type>Integer</Type>
543
+ <Subtype>Integer64</Subtype>
544
+ </PropertyDefn>
545
+ <!-- ID návrhu změn v ISUI -->
546
+ <PropertyDefn>
547
+ <Name>GlobalniIdNavrhuZmeny</Name>
548
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
549
+ <Type>Integer</Type>
550
+ <Subtype>Integer64</Subtype>
551
+ </PropertyDefn>
552
+ <!-- Mluvnické charakteristiky 2 až 7 pád -->
553
+ <PropertyDefn>
554
+ <Name>MluvnickeCharakteristikyPad2</Name>
555
+ <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
556
+ <Type>String</Type>
557
+ <Width>48</Width>
558
+ </PropertyDefn>
559
+ <PropertyDefn>
560
+ <Name>MluvnickeCharakteristikyPad3</Name>
561
+ <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
562
+ <Type>String</Type>
563
+ <Width>48</Width>
564
+ </PropertyDefn>
565
+ <PropertyDefn>
566
+ <Name>MluvnickeCharakteristikyPad4</Name>
567
+ <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
568
+ <Type>String</Type>
569
+ <Width>48</Width>
570
+ </PropertyDefn>
571
+ <PropertyDefn>
572
+ <Name>MluvnickeCharakteristikyPad6</Name>
573
+ <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
574
+ <Type>String</Type>
575
+ <Width>48</Width>
576
+ </PropertyDefn>
577
+ <PropertyDefn>
578
+ <Name>MluvnickeCharakteristikyPad7</Name>
579
+ <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
580
+ <Type>String</Type>
581
+ <Width>48</Width>
582
+ </PropertyDefn>
583
+ <!-- Datum vzniku -->
584
+ <PropertyDefn>
585
+ <Name>DatumVzniku</Name>
586
+ <ElementPath>DatumVzniku</ElementPath>
587
+ <Type>String</Type>
588
+ <Width>19</Width>
589
+ </PropertyDefn>
590
+ </GMLFeatureClass>
591
+ <!-- Katastralní území -->
592
+ <GMLFeatureClass>
593
+ <Name>KatastralniUzemi</Name>
594
+ <ElementPath>Data|KatastralniUzemi|KatastralniUzemi</ElementPath>
595
+ <!-- Geometrie definičního bodu katastrálního území -->
596
+ <GeomPropertyDefn>
597
+ <Name>DefinicniBod</Name>
598
+ <ElementPath>Geometrie|DefinicniBod</ElementPath>
599
+ <Type>MultiPoint</Type>
600
+ </GeomPropertyDefn>
601
+ <!-- Originální geometrie hranice katastrálního území -->
602
+ <GeomPropertyDefn>
603
+ <Name>OriginalniHranice</Name>
604
+ <ElementPath>Geometrie|OriginalniHranice</ElementPath>
605
+ <Type>MultiPolygon</Type>
606
+ </GeomPropertyDefn>
607
+ <!-- Generalizovaná geometrie hranice katastrálního území (stupeň generalizace 2) -->
608
+ <GeomPropertyDefn>
609
+ <Name>GeneralizovaneHranice</Name>
610
+ <ElementPath>Geometrie|GeneralizovaneHranice2</ElementPath>
611
+ <Type>MultiPolygon</Type>
612
+ </GeomPropertyDefn>
613
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
614
+ <!-- Kód katastrálního území -->
615
+ <PropertyDefn>
616
+ <Name>Kod</Name>
617
+ <ElementPath>Kod</ElementPath>
618
+ <Type>Integer</Type>
619
+ </PropertyDefn>
620
+ <!-- Název katastrálního území -->
621
+ <PropertyDefn>
622
+ <Name>Nazev</Name>
623
+ <ElementPath>Nazev</ElementPath>
624
+ <Type>String</Type>
625
+ <Width>48</Width>
626
+ </PropertyDefn>
627
+ <!-- Identifikátor nesprávnosti na prvku -->
628
+ <PropertyDefn>
629
+ <Name>Nespravny</Name>
630
+ <ElementPath>Nespravny</ElementPath>
631
+ <Type>String</Type>
632
+ <Width>5</Width>
633
+ </PropertyDefn>
634
+ <!-- Příznak existence digitální mapy -->
635
+ <PropertyDefn>
636
+ <Name>ExistujeDigitalniMapa</Name>
637
+ <ElementPath>ExistujeDigitalniMapa</ElementPath>
638
+ <Type>String</Type>
639
+ <Width>5</Width>
640
+ </PropertyDefn>
641
+ <!-- Nadřazená obec -->
642
+ <PropertyDefn>
643
+ <Name>ObecKod</Name>
644
+ <ElementPath>Obec|Kod</ElementPath>
645
+ <Type>Integer</Type>
646
+ </PropertyDefn>
647
+ <!-- Začátek platnosti -->
648
+ <PropertyDefn>
649
+ <Name>PlatiOd</Name>
650
+ <ElementPath>PlatiOd</ElementPath>
651
+ <Type>String</Type>
652
+ <Width>19</Width>
653
+ </PropertyDefn>
654
+ <!-- Konec platnosti -->
655
+ <PropertyDefn>
656
+ <Name>PlatiDo</Name>
657
+ <ElementPath>PlatiDo</ElementPath>
658
+ <Type>String</Type>
659
+ <Width>19</Width>
660
+ </PropertyDefn>
661
+ <!-- ID transakce v RUIAN -->
662
+ <PropertyDefn>
663
+ <Name>IdTransakce</Name>
664
+ <ElementPath>IdTransakce</ElementPath>
665
+ <Type>Integer</Type>
666
+ <Subtype>Integer64</Subtype>
667
+ </PropertyDefn>
668
+ <!-- ID návrhu změn v ISUI -->
669
+ <PropertyDefn>
670
+ <Name>GlobalniIdNavrhuZmeny</Name>
671
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
672
+ <Type>Integer</Type>
673
+ <Subtype>Integer64</Subtype>
674
+ </PropertyDefn>
675
+ <!-- ID řízení v ISKN -->
676
+ <PropertyDefn>
677
+ <Name>RizeniId</Name>
678
+ <ElementPath>RizeniId</ElementPath>
679
+ <Type>Integer</Type>
680
+ <Subtype>Integer64</Subtype>
681
+ </PropertyDefn>
682
+ <!-- Mluvnické charakteristiky 2 až 7 pád -->
683
+ <PropertyDefn>
684
+ <Name>MluvnickeCharakteristikyPad2</Name>
685
+ <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
686
+ <Type>String</Type>
687
+ <Width>48</Width>
688
+ </PropertyDefn>
689
+ <PropertyDefn>
690
+ <Name>MluvnickeCharakteristikyPad3</Name>
691
+ <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
692
+ <Type>String</Type>
693
+ <Width>48</Width>
694
+ </PropertyDefn>
695
+ <PropertyDefn>
696
+ <Name>MluvnickeCharakteristikyPad4</Name>
697
+ <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
698
+ <Type>String</Type>
699
+ <Width>48</Width>
700
+ </PropertyDefn>
701
+ <PropertyDefn>
702
+ <Name>MluvnickeCharakteristikyPad6</Name>
703
+ <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
704
+ <Type>String</Type>
705
+ <Width>48</Width>
706
+ </PropertyDefn>
707
+ <PropertyDefn>
708
+ <Name>MluvnickeCharakteristikyPad7</Name>
709
+ <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
710
+ <Type>String</Type>
711
+ <Width>48</Width>
712
+ </PropertyDefn>
713
+ <!-- Datum vzniku -->
714
+ <PropertyDefn>
715
+ <Name>DatumVzniku</Name>
716
+ <ElementPath>DatumVzniku</ElementPath>
717
+ <Type>String</Type>
718
+ <Width>19</Width>
719
+ </PropertyDefn>
720
+ </GMLFeatureClass>
721
+ <!-- ZSJ -->
722
+ <GMLFeatureClass>
723
+ <Name>Zsj</Name>
724
+ <ElementPath>Data|Zsj|Zsj</ElementPath>
725
+ <!-- Geometrie definičního bodu ZSJ -->
726
+ <GeomPropertyDefn>
727
+ <Name>DefinicniBod</Name>
728
+ <ElementPath>Geometrie|DefinicniBod</ElementPath>
729
+ <Type>MultiPoint</Type>
730
+ </GeomPropertyDefn>
731
+ <!-- Originální geometrie hranice ZSJ -->
732
+ <GeomPropertyDefn>
733
+ <Name>OriginalniHranice</Name>
734
+ <ElementPath>Geometrie|OriginalniHranice</ElementPath>
735
+ <Type>MultiPolygon</Type>
736
+ </GeomPropertyDefn>
737
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
738
+ <!-- Kód ZSJ -->
739
+ <PropertyDefn>
740
+ <Name>Kod</Name>
741
+ <ElementPath>Kod</ElementPath>
742
+ <Type>Integer</Type>
743
+ </PropertyDefn>
744
+ <!-- Název ZSJ -->
745
+ <PropertyDefn>
746
+ <Name>Nazev</Name>
747
+ <ElementPath>Nazev</ElementPath>
748
+ <Type>String</Type>
749
+ <Width>48</Width>
750
+ </PropertyDefn>
751
+ <!-- Identifikátor nesprávnosti na prvku -->
752
+ <PropertyDefn>
753
+ <Name>Nespravny</Name>
754
+ <ElementPath>Nespravny</ElementPath>
755
+ <Type>String</Type>
756
+ <Width>5</Width>
757
+ </PropertyDefn>
758
+ <!-- Nadřazené katastrální území -->
759
+ <PropertyDefn>
760
+ <Name>KatastralniUzemiKod</Name>
761
+ <ElementPath>KatastralniUzemi|Kod</ElementPath>
762
+ <Type>Integer</Type>
763
+ </PropertyDefn>
764
+ <!-- Začátek platnosti -->
765
+ <PropertyDefn>
766
+ <Name>PlatiOd</Name>
767
+ <ElementPath>PlatiOd</ElementPath>
768
+ <Type>String</Type>
769
+ <Width>19</Width>
770
+ </PropertyDefn>
771
+ <!-- Konec platnosti -->
772
+ <PropertyDefn>
773
+ <Name>PlatiDo</Name>
774
+ <ElementPath>PlatiDo</ElementPath>
775
+ <Type>String</Type>
776
+ <Width>19</Width>
777
+ </PropertyDefn>
778
+ <!-- ID transakce v RUIAN -->
779
+ <PropertyDefn>
780
+ <Name>IdTransakce</Name>
781
+ <ElementPath>IdTransakce</ElementPath>
782
+ <Type>Integer</Type>
783
+ <Subtype>Integer64</Subtype>
784
+ </PropertyDefn>
785
+ <!-- ID návrhu změn v ISUI -->
786
+ <PropertyDefn>
787
+ <Name>GlobalniIdNavrhuZmeny</Name>
788
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
789
+ <Type>Integer</Type>
790
+ <Subtype>Integer64</Subtype>
791
+ </PropertyDefn>
792
+ <!-- Mluvnické charakteristiky 2 až 7 pád -->
793
+ <PropertyDefn>
794
+ <Name>MluvnickeCharakteristikyPad2</Name>
795
+ <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
796
+ <Type>String</Type>
797
+ <Width>48</Width>
798
+ </PropertyDefn>
799
+ <PropertyDefn>
800
+ <Name>MluvnickeCharakteristikyPad3</Name>
801
+ <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
802
+ <Type>String</Type>
803
+ <Width>48</Width>
804
+ </PropertyDefn>
805
+ <PropertyDefn>
806
+ <Name>MluvnickeCharakteristikyPad4</Name>
807
+ <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
808
+ <Type>String</Type>
809
+ <Width>48</Width>
810
+ </PropertyDefn>
811
+ <PropertyDefn>
812
+ <Name>MluvnickeCharakteristikyPad6</Name>
813
+ <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
814
+ <Type>String</Type>
815
+ <Width>48</Width>
816
+ </PropertyDefn>
817
+ <PropertyDefn>
818
+ <Name>MluvnickeCharakteristikyPad7</Name>
819
+ <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
820
+ <Type>String</Type>
821
+ <Width>48</Width>
822
+ </PropertyDefn>
823
+ <!-- Výměra ZSJ v metrech čtverečních -->
824
+ <PropertyDefn>
825
+ <Name>Vymera</Name>
826
+ <ElementPath>Vymera</ElementPath>
827
+ <Type>Integer</Type>
828
+ <Subtype>Integer64</Subtype>
829
+ </PropertyDefn>
830
+ <!-- Převažující charakter využití ZSJ -->
831
+ <PropertyDefn>
832
+ <Name>CharakterZsjKod</Name>
833
+ <ElementPath>CharakterZsjKod</ElementPath>
834
+ <Type>Integer</Type>
835
+ </PropertyDefn>
836
+ <!-- Datum vzniku -->
837
+ <PropertyDefn>
838
+ <Name>DatumVzniku</Name>
839
+ <ElementPath>DatumVzniku</ElementPath>
840
+ <Type>String</Type>
841
+ <Width>19</Width>
842
+ </PropertyDefn>
843
+ </GMLFeatureClass>
844
+ <!-- Ulice -->
845
+ <GMLFeatureClass>
846
+ <Name>Ulice</Name>
847
+ <ElementPath>Data|Ulice|Ulice</ElementPath>
848
+ <!-- Geometrie definiční čáry ulice -->
849
+ <GeomPropertyDefn>
850
+ <Name>DefinicniCara</Name>
851
+ <ElementPath>Geometrie|DefinicniCara</ElementPath>
852
+ <Type>MultiLineString</Type>
853
+ </GeomPropertyDefn>
854
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
855
+ <!-- Kód ulice -->
856
+ <PropertyDefn>
857
+ <Name>Kod</Name>
858
+ <ElementPath>Kod</ElementPath>
859
+ <Type>Integer</Type>
860
+ </PropertyDefn>
861
+ <!-- Název ulice -->
862
+ <PropertyDefn>
863
+ <Name>Nazev</Name>
864
+ <ElementPath>Nazev</ElementPath>
865
+ <Type>String</Type>
866
+ <Width>48</Width>
867
+ </PropertyDefn>
868
+ <!-- Identifikátor nesprávnosti na prvku -->
869
+ <PropertyDefn>
870
+ <Name>Nespravny</Name>
871
+ <ElementPath>Nespravny</ElementPath>
872
+ <Type>String</Type>
873
+ <Width>5</Width>
874
+ </PropertyDefn>
875
+ <!-- Nadřazená obec -->
876
+ <PropertyDefn>
877
+ <Name>ObecKod</Name>
878
+ <ElementPath>Obec|Kod</ElementPath>
879
+ <Type>Integer</Type>
880
+ </PropertyDefn>
881
+ <!-- Začátek platnosti -->
882
+ <PropertyDefn>
883
+ <Name>PlatiOd</Name>
884
+ <ElementPath>PlatiOd</ElementPath>
885
+ <Type>String</Type>
886
+ <Width>19</Width>
887
+ </PropertyDefn>
888
+ <!-- Konec platnosti -->
889
+ <PropertyDefn>
890
+ <Name>PlatiDo</Name>
891
+ <ElementPath>PlatiDo</ElementPath>
892
+ <Type>String</Type>
893
+ <Width>19</Width>
894
+ </PropertyDefn>
895
+ <!-- ID transakce v RUIAN -->
896
+ <PropertyDefn>
897
+ <Name>IdTransakce</Name>
898
+ <ElementPath>IdTransakce</ElementPath>
899
+ <Type>Integer</Type>
900
+ <Subtype>Integer64</Subtype>
901
+ </PropertyDefn>
902
+ <!-- ID návrhu změn v ISUI -->
903
+ <PropertyDefn>
904
+ <Name>GlobalniIdNavrhuZmeny</Name>
905
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
906
+ <Type>Integer</Type>
907
+ <Subtype>Integer64</Subtype>
908
+ </PropertyDefn>
909
+ </GMLFeatureClass>
910
+ <!-- Parcely -->
911
+ <GMLFeatureClass>
912
+ <Name>Parcely</Name>
913
+ <ElementPath>Data|Parcely|Parcela</ElementPath>
914
+ <!-- Geometrie definičního bodu parcely -->
915
+ <GeomPropertyDefn>
916
+ <Name>DefinicniBod</Name>
917
+ <ElementPath>Geometrie|DefinicniBod</ElementPath>
918
+ <Type>Point</Type>
919
+ </GeomPropertyDefn>
920
+ <!-- Originální geometrie hranice parcely -->
921
+ <GeomPropertyDefn>
922
+ <Name>OriginalniHranice</Name>
923
+ <ElementPath>Geometrie|OriginalniHranice</ElementPath>
924
+ <Type>Polygon</Type>
925
+ </GeomPropertyDefn>
926
+ <!-- Originální geometrie hranice parcely (Ompv) -->
927
+ <GeomPropertyDefn>
928
+ <Name>OriginalniHraniceOmpv</Name>
929
+ <ElementPath>Geometrie|OriginalniHraniceOmpv</ElementPath>
930
+ <Type>MultiPolygon</Type>
931
+ </GeomPropertyDefn>
932
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
933
+ <!-- Jednoznační identifikátor parcely -->
934
+ <PropertyDefn>
935
+ <Name>Id</Name>
936
+ <ElementPath>Id</ElementPath>
937
+ <Type>Integer</Type>
938
+ <Subtype>Integer64</Subtype>
939
+ </PropertyDefn>
940
+ <!-- Identifikátor nesprávnosti na prvku -->
941
+ <PropertyDefn>
942
+ <Name>Nespravny</Name>
943
+ <ElementPath>Nespravny</ElementPath>
944
+ <Type>String</Type>
945
+ <Width>5</Width>
946
+ </PropertyDefn>
947
+ <!-- Kmenové parcelní číslo -->
948
+ <PropertyDefn>
949
+ <Name>KmenoveCislo</Name>
950
+ <ElementPath>KmenoveCislo</ElementPath>
951
+ <Type>Integer</Type>
952
+ </PropertyDefn>
953
+ <!-- Poddělení čísla parcely -->
954
+ <PropertyDefn>
955
+ <Name>PododdeleniCisla</Name>
956
+ <ElementPath>PododdeleniCisla</ElementPath>
957
+ <Type>Integer</Type>
958
+ </PropertyDefn>
959
+ <!-- Výměra parcely -->
960
+ <PropertyDefn>
961
+ <Name>VymeraParcely</Name>
962
+ <ElementPath>VymeraParcely</ElementPath>
963
+ <Type>Integer</Type>
964
+ <Subtype>Integer64</Subtype>
965
+ </PropertyDefn>
966
+ <!-- Způsob využití pozemku -->
967
+ <PropertyDefn>
968
+ <Name>ZpusobyVyuzitiPozemku</Name>
969
+ <ElementPath>ZpusobyVyuzitiPozemku</ElementPath>
970
+ <Type>Integer</Type>
971
+ </PropertyDefn>
972
+ <!-- Rozlišení druhu číslování parcely -->
973
+ <PropertyDefn>
974
+ <Name>DruhCislovaniKod</Name>
975
+ <ElementPath>DruhCislovaniKod</ElementPath>
976
+ <Type>Integer</Type>
977
+ </PropertyDefn>
978
+ <!-- Kód druhu pozemku -->
979
+ <PropertyDefn>
980
+ <Name>DruhPozemkuKod</Name>
981
+ <ElementPath>DruhPozemkuKod</ElementPath>
982
+ <Type>Integer</Type>
983
+ </PropertyDefn>
984
+ <!-- Nadřazené katastrální území -->
985
+ <PropertyDefn>
986
+ <Name>KatastralniUzemiKod</Name>
987
+ <ElementPath>KatastralniUzemi|Kod</ElementPath>
988
+ <Type>Integer</Type>
989
+ </PropertyDefn>
990
+ <!-- Začátek platnosti -->
991
+ <PropertyDefn>
992
+ <Name>PlatiOd</Name>
993
+ <ElementPath>PlatiOd</ElementPath>
994
+ <Type>String</Type>
995
+ <Width>19</Width>
996
+ </PropertyDefn>
997
+ <!-- Konec platnosti -->
998
+ <PropertyDefn>
999
+ <Name>PlatiDo</Name>
1000
+ <ElementPath>PlatiDo</ElementPath>
1001
+ <Type>String</Type>
1002
+ <Width>19</Width>
1003
+ </PropertyDefn>
1004
+ <!-- ID transakce v RUIAN -->
1005
+ <PropertyDefn>
1006
+ <Name>IdTransakce</Name>
1007
+ <ElementPath>IdTransakce</ElementPath>
1008
+ <Type>Integer</Type>
1009
+ <Subtype>Integer64</Subtype>
1010
+ </PropertyDefn>
1011
+ <!-- ID řízení v ISKN -->
1012
+ <PropertyDefn>
1013
+ <Name>RizeniId</Name>
1014
+ <ElementPath>RizeniId</ElementPath>
1015
+ <Type>Integer</Type>
1016
+ <Subtype>Integer64</Subtype>
1017
+ </PropertyDefn>
1018
+ <!-- Bonitované díly parcely - výměra v metrech čtverečných -->
1019
+ <PropertyDefn>
1020
+ <Name>BonitovanyDilVymera</Name>
1021
+ <ElementPath>BonitovaneDily|BonitovanyDil|Vymera</ElementPath>
1022
+ <Type>IntegerList</Type>
1023
+ </PropertyDefn>
1024
+ <!-- Kód bonitovaných půdně ekologických jednotek -->
1025
+ <PropertyDefn>
1026
+ <Name>BonitovanyDilBonitovanaJednotkaKod</Name>
1027
+ <ElementPath>BonitovaneDily|BonitovanyDil|BonitovanaJednotkaKod</ElementPath>
1028
+ <Type>IntegerList</Type>
1029
+ </PropertyDefn>
1030
+ <!-- Bonitované díly parcely - ID transakce v RUIAN -->
1031
+ <PropertyDefn>
1032
+ <Name>BonitovanyDilIdTranskace</Name>
1033
+ <ElementPath>BonitovaneDily|BonitovanyDil|IdTranskace</ElementPath>
1034
+ <Type>IntegerList</Type>
1035
+ <Subtype>Integer64</Subtype>
1036
+ </PropertyDefn>
1037
+ <!-- Bonitované díly parcely - ID řízení v ISKN -->
1038
+ <PropertyDefn>
1039
+ <Name>BonitovanyDilRizeniId</Name>
1040
+ <ElementPath>BonitovaneDily|BonitovanyDil|RizeniId</ElementPath>
1041
+ <Type>IntegerList</Type>
1042
+ <Subtype>Integer64</Subtype>
1043
+ </PropertyDefn>
1044
+ <!-- Způsob ochrany pozemku - kód ochrany -->
1045
+ <PropertyDefn>
1046
+ <Name>ZpusobOchranyKod</Name>
1047
+ <ElementPath>ZpusobyOchranyPozemku|ZpusobOchrany|Kod</ElementPath>
1048
+ <Type>IntegerList</Type>
1049
+ </PropertyDefn>
1050
+ <!-- Způsob ochrany pozemku - typ ochrany -->
1051
+ <PropertyDefn>
1052
+ <Name>ZpusobOchranyTypOchranyKod</Name>
1053
+ <ElementPath>ZpusobyOchranyPozemku|ZpusobOchrany|TypOchranyKod</ElementPath>
1054
+ <Type>IntegerList</Type>
1055
+ </PropertyDefn>
1056
+ <!-- Způsob ochrany pozemku - ID transakce v RUIAN -->
1057
+ <PropertyDefn>
1058
+ <Name>ZpusobOchranyIdTransakce</Name>
1059
+ <ElementPath>ZpusobyOchranyPozemku|ZpusobOchrany|IdTransakce</ElementPath>
1060
+ <Type>IntegerList</Type>
1061
+ </PropertyDefn>
1062
+ <!-- Způsob ochrany pozemku - ID řízení v ISKN -->
1063
+ <PropertyDefn>
1064
+ <Name>ZpusobOchranyRizeniId</Name>
1065
+ <ElementPath>ZpusobyOchranyPozemku|ZpusobOchrany|RizeniId</ElementPath>
1066
+ <Type>IntegerList</Type>
1067
+ <Subtype>Integer64</Subtype>
1068
+ </PropertyDefn>
1069
+ </GMLFeatureClass>
1070
+ <!-- Stavební objekty -->
1071
+ <GMLFeatureClass>
1072
+ <Name>StavebniObjekty</Name>
1073
+ <ElementPath>Data|StavebniObjekty|StavebniObjekt</ElementPath>
1074
+ <!-- Geometrie definičního bodu stavebního objektu -->
1075
+ <GeomPropertyDefn>
1076
+ <Name>DefinicniBod</Name>
1077
+ <ElementPath>Geometrie|DefinicniBod</ElementPath>
1078
+ <Type>Point</Type>
1079
+ </GeomPropertyDefn>
1080
+ <!-- Originální geometrie hranice stavebního objektu -->
1081
+ <GeomPropertyDefn>
1082
+ <Name>OriginalniHranice</Name>
1083
+ <ElementPath>Geometrie|OriginalniHranice</ElementPath>
1084
+ <Type>MultiPolygon</Type>
1085
+ </GeomPropertyDefn>
1086
+ <!-- Originální geometrie hranice stavebního objektu (Ompv) -->
1087
+ <GeomPropertyDefn>
1088
+ <Name>OriginalniHraniceOmpv</Name>
1089
+ <ElementPath>Geometrie|OriginalniHraniceOmpv</ElementPath>
1090
+ <Type>MultiPolygon</Type>
1091
+ </GeomPropertyDefn>
1092
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
1093
+ <!-- Kód stavebního objektu -->
1094
+ <PropertyDefn>
1095
+ <Name>Kod</Name>
1096
+ <ElementPath>Kod</ElementPath>
1097
+ <Type>Integer</Type>
1098
+ </PropertyDefn>
1099
+ <!-- Identifikátor nesprávnosti na prvku -->
1100
+ <PropertyDefn>
1101
+ <Name>Nespravny</Name>
1102
+ <ElementPath>Nespravny</ElementPath>
1103
+ <Type>String</Type>
1104
+ <Width>5</Width>
1105
+ </PropertyDefn>
1106
+ <!-- Seznam čísel domovních stavebního objektu -->
1107
+ <PropertyDefn>
1108
+ <Name>CisloDomovni</Name>
1109
+ <ElementPath>CislaDomovni|CisloDomovni</ElementPath>
1110
+ <Type>IntegerList</Type>
1111
+ </PropertyDefn>
1112
+ <!-- Jedna z parcel, na nichž je stavební objekt postaven, zvolená
1113
+ pro identifikaci objektu (tzv. definiční parcela) -->
1114
+ <PropertyDefn>
1115
+ <Name>IdentifikacniParcelaId</Name>
1116
+ <ElementPath>IdentifikacniParcela|Id</ElementPath>
1117
+ <Type>Integer</Type>
1118
+ <Subtype>Integer64</Subtype>
1119
+ </PropertyDefn>
1120
+ <!-- Typ stavebního objektu -->
1121
+ <PropertyDefn>
1122
+ <Name>TypStavebnihoObjektuKod</Name>
1123
+ <ElementPath>TypStavebnihoObjektuKod</ElementPath>
1124
+ <Type>Integer</Type>
1125
+ </PropertyDefn>
1126
+ <!-- Způsob využití -->
1127
+ <PropertyDefn>
1128
+ <Name>ZpusobVyuzitiKod</Name>
1129
+ <ElementPath>ZpusobVyuzitiKod</ElementPath>
1130
+ <Type>Integer</Type>
1131
+ </PropertyDefn>
1132
+ <!-- Nadřazená část obce -->
1133
+ <PropertyDefn>
1134
+ <Name>CastObceKod</Name>
1135
+ <ElementPath>CastObce|Kod</ElementPath>
1136
+ <Type>Integer</Type>
1137
+ </PropertyDefn>
1138
+ <!-- Nadřazený MOMC -->
1139
+ <PropertyDefn>
1140
+ <Name>MomcKod</Name>
1141
+ <ElementPath>Momc|Kod</ElementPath>
1142
+ <Type>Integer</Type>
1143
+ </PropertyDefn>
1144
+ <!-- Začátek platnosti -->
1145
+ <PropertyDefn>
1146
+ <Name>PlatiOd</Name>
1147
+ <ElementPath>PlatiOd</ElementPath>
1148
+ <Type>String</Type>
1149
+ <Width>19</Width>
1150
+ </PropertyDefn>
1151
+ <!-- Konec platnosti -->
1152
+ <PropertyDefn>
1153
+ <Name>PlatiDo</Name>
1154
+ <ElementPath>PlatiDo</ElementPath>
1155
+ <Type>String</Type>
1156
+ <Width>19</Width>
1157
+ </PropertyDefn>
1158
+ <!-- ID transakce v RUIAN -->
1159
+ <PropertyDefn>
1160
+ <Name>IdTransakce</Name>
1161
+ <ElementPath>IdTransakce</ElementPath>
1162
+ <Type>Integer</Type>
1163
+ <Subtype>Integer64</Subtype>
1164
+ </PropertyDefn>
1165
+ <!-- ID návrhu změn v ISUI -->
1166
+ <PropertyDefn>
1167
+ <Name>GlobalniIdNavrhuZmeny</Name>
1168
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
1169
+ <Type>Integer</Type>
1170
+ <Subtype>Integer64</Subtype>
1171
+ </PropertyDefn>
1172
+ <!-- ID budovy v ISKN -->
1173
+ <PropertyDefn>
1174
+ <Name>IsknBudovaId</Name>
1175
+ <ElementPath>IsknBudovaId</ElementPath>
1176
+ <Type>Integer</Type>
1177
+ <Subtype>Integer64</Subtype>
1178
+ </PropertyDefn>
1179
+ <!-- Datum dokončení stavebního objektu -->
1180
+ <PropertyDefn>
1181
+ <Name>Dokonceni</Name>
1182
+ <ElementPath>Dokonceni</ElementPath>
1183
+ <Type>String</Type>
1184
+ <Width>19</Width>
1185
+ </PropertyDefn>
1186
+ <!-- Druh svislé nosné konstrukce -->
1187
+ <PropertyDefn>
1188
+ <Name>DruhKonstrukceKod</Name>
1189
+ <ElementPath>DruhKonstrukceKod</ElementPath>
1190
+ <Type>Integer</Type>
1191
+ </PropertyDefn>
1192
+ <!-- Obestavěný prostor v m3 -->
1193
+ <PropertyDefn>
1194
+ <Name>ObestavenyProstor</Name>
1195
+ <ElementPath>ObestavenyProstor</ElementPath>
1196
+ <Type>Integer</Type>
1197
+ </PropertyDefn>
1198
+ <!-- Počet bytů u stavebního objektu s byty -->
1199
+ <PropertyDefn>
1200
+ <Name>PocetBytu</Name>
1201
+ <ElementPath>PocetBytu</ElementPath>
1202
+ <Type>Integer</Type>
1203
+ </PropertyDefn>
1204
+ <!-- Počet nadzemních a podzemních podlaží -->
1205
+ <PropertyDefn>
1206
+ <Name>PocetPodlazi</Name>
1207
+ <ElementPath>PocetPodlazi</ElementPath>
1208
+ <Type>Integer</Type>
1209
+ </PropertyDefn>
1210
+ <!-- Podlahová plocha v m2 -->
1211
+ <PropertyDefn>
1212
+ <Name>PodlahovaPlocha</Name>
1213
+ <ElementPath>PodlahovaPlocha</ElementPath>
1214
+ <Type>Integer</Type>
1215
+ </PropertyDefn>
1216
+ <!-- Připojení na kanalizační síť -->
1217
+ <PropertyDefn>
1218
+ <Name>PripojeniKanalizaceKod</Name>
1219
+ <ElementPath>PripojeniKanalizaceKod</ElementPath>
1220
+ <Type>Integer</Type>
1221
+ </PropertyDefn>
1222
+ <!-- Připojení na rozvod plynu -->
1223
+ <PropertyDefn>
1224
+ <Name>PripojeniPlynKod</Name>
1225
+ <ElementPath>PripojeniPlynKod</ElementPath>
1226
+ <Type>Integer</Type>
1227
+ </PropertyDefn>
1228
+ <!-- Připojení na vodovod -->
1229
+ <PropertyDefn>
1230
+ <Name>PripojeniVodovodKod</Name>
1231
+ <ElementPath>PripojeniVodovodKod</ElementPath>
1232
+ <Type>Integer</Type>
1233
+ </PropertyDefn>
1234
+ <!-- Vybavení výtahem -->
1235
+ <PropertyDefn>
1236
+ <Name>VybaveniVytahemKod</Name>
1237
+ <ElementPath>VybaveniVytahemKod</ElementPath>
1238
+ <Type>Integer</Type>
1239
+ </PropertyDefn>
1240
+ <!-- Zastavěná plocha v m2 -->
1241
+ <PropertyDefn>
1242
+ <Name>ZastavenaPlocha</Name>
1243
+ <ElementPath>ZastavenaPlocha</ElementPath>
1244
+ <Type>Integer</Type>
1245
+ </PropertyDefn>
1246
+ <!-- Způsob vytápění -->
1247
+ <PropertyDefn>
1248
+ <Name>ZpusobVytapeniKod</Name>
1249
+ <ElementPath>ZpusobVytapeniKod</ElementPath>
1250
+ <Type>Integer</Type>
1251
+ </PropertyDefn>
1252
+ <!-- Způsob ochrany stavebního objektu - kód ochrany -->
1253
+ <PropertyDefn>
1254
+ <Name>ZpusobOchranyKod</Name>
1255
+ <ElementPath>ZpusobyOchrany|ZpusobOchrany|Kod</ElementPath>
1256
+ <Type>IntegerList</Type>
1257
+ </PropertyDefn>
1258
+ <!-- Způsob ochrany stavebního objektu - typ ochrany -->
1259
+ <PropertyDefn>
1260
+ <Name>ZpusobOchranyTypOchranyKod</Name>
1261
+ <ElementPath>ZpusobyOchrany|ZpusobOchrany|TypOchranyKod</ElementPath>
1262
+ <Type>IntegerList</Type>
1263
+ </PropertyDefn>
1264
+ <!-- Způsob ochrany stavebního objektu - ID transakce v RUIAN -->
1265
+ <PropertyDefn>
1266
+ <Name>ZpusobOchranyIdTransakce</Name>
1267
+ <ElementPath>ZpusobyOchrany|ZpusobOchrany|IdTransakce</ElementPath>
1268
+ <Type>IntegerList</Type>
1269
+ </PropertyDefn>
1270
+ <!-- Způsob ochrany stavebního objektu - ID řízení v ISKN -->
1271
+ <PropertyDefn>
1272
+ <Name>ZpusobOchranyRizeniId</Name>
1273
+ <ElementPath>ZpusobyOchrany|ZpusobOchrany|RizeniId</ElementPath>
1274
+ <Type>IntegerList</Type>
1275
+ <Subtype>Integer64</Subtype>
1276
+ </PropertyDefn>
1277
+ <!-- Detailní technicko-ekonomické atributy (TEA) -->
1278
+ <PropertyDefn>
1279
+ <Name>DetailniTEAKod</Name>
1280
+ <ElementPath>DetailniTEA|DetailniTEA|Kod</ElementPath>
1281
+ <Type>IntegerList</Type>
1282
+ </PropertyDefn>
1283
+ <!-- TEA - Začátek platnosti -->
1284
+ <PropertyDefn>
1285
+ <Name>DetailniTEAPlatiOd</Name>
1286
+ <ElementPath>DetailniTEA|DetailniTEA|PlatiOd</ElementPath>
1287
+ <Type>StringList</Type>
1288
+ <Width>19</Width>
1289
+ </PropertyDefn>
1290
+ <!-- TEA - ID návrhu změny v ISUI -->
1291
+ <PropertyDefn>
1292
+ <Name>DetailniTEAGlobalniIdNavrhuZmeny</Name>
1293
+ <ElementPath>DetailniTEA|DetailniTEA|GlobalniIdNavrhuZmeny</ElementPath>
1294
+ <Type>IntegerList</Type>
1295
+ <Subtype>Integer64</Subtype>
1296
+ </PropertyDefn>
1297
+ <!-- TEA - Druh svislé nosné konstrukce -->
1298
+ <PropertyDefn>
1299
+ <Name>DetailniTEADruhKonstrukceKod</Name>
1300
+ <ElementPath>DetailniTEA|DetailniTEA|DruhKonstrukceKod</ElementPath>
1301
+ <Type>IntegerList</Type>
1302
+ </PropertyDefn>
1303
+ <!-- TEA - Počet bytů u stavebního objektu s byty -->
1304
+ <PropertyDefn>
1305
+ <Name>DetailniTEAPocetBytu</Name>
1306
+ <ElementPath>DetailniTEA|DetailniTEA|PocetBytu</ElementPath>
1307
+ <Type>IntegerList</Type>
1308
+ </PropertyDefn>
1309
+ <!-- TEA - Počet nadzemních a podzemních podlaží -->
1310
+ <PropertyDefn>
1311
+ <Name>DetailniTEAPocetPodlazi</Name>
1312
+ <ElementPath>DetailniTEA|DetailniTEA|PocetPodlazi</ElementPath>
1313
+ <Type>IntegerList</Type>
1314
+ </PropertyDefn>
1315
+ <!-- TEA - Připojení na kanalizační síť -->
1316
+ <PropertyDefn>
1317
+ <Name>DetailniTEAPripojeniKanalizaceKod</Name>
1318
+ <ElementPath>DetailniTEA|DetailniTEA|PripojeniKanalizaceKod</ElementPath>
1319
+ <Type>IntegerList</Type>
1320
+ </PropertyDefn>
1321
+ <!-- TEA - Připojení na rozvod plynu -->
1322
+ <PropertyDefn>
1323
+ <Name>DetailniTEAPripojeniPlynKod</Name>
1324
+ <ElementPath>DetailniTEA|DetailniTEA|PripojeniPlynKod</ElementPath>
1325
+ <Type>IntegerList</Type>
1326
+ </PropertyDefn>
1327
+ <!-- TEA - Připojení na vodovod -->
1328
+ <PropertyDefn>
1329
+ <Name>DetailniTEAPripojeniVodovodKod</Name>
1330
+ <ElementPath>DetailniTEA|DetailniTEA|PripojeniVodovodKod</ElementPath>
1331
+ <Type>IntegerList</Type>
1332
+ </PropertyDefn>
1333
+ <!-- TEA - Vybavení výtahem -->
1334
+ <PropertyDefn>
1335
+ <Name>DetailniTEAZpusobVytapeniKod</Name>
1336
+ <ElementPath>DetailniTEA|DetailniTEA|ZpusobVytapeniKod</ElementPath>
1337
+ <Type>IntegerList</Type>
1338
+ </PropertyDefn>
1339
+ <!-- TEA - Kód adresního místa -->
1340
+ <PropertyDefn>
1341
+ <Name>DetailniTEAAdresniMistoKod</Name>
1342
+ <ElementPath>DetailniTEA|DetailniTEA|AdresniMistoKod|Kod</ElementPath>
1343
+ <Type>IntegerList</Type>
1344
+ </PropertyDefn>
1345
+ </GMLFeatureClass>
1346
+ <!-- Adresní místa -->
1347
+ <GMLFeatureClass>
1348
+ <Name>AdresniMista</Name>
1349
+ <ElementPath>Data|AdresniMista|AdresniMisto</ElementPath>
1350
+ <!-- Definiční bod typu Adresní bod -->
1351
+ <GeomPropertyDefn>
1352
+ <Name>AdresniBod</Name>
1353
+ <ElementPath>Geometrie|DefinicniBod|AdresniBod</ElementPath>
1354
+ <Type>Point</Type>
1355
+ </GeomPropertyDefn>
1356
+ <!-- Definiční bod typu Přístup pro záchrannou službu -->
1357
+ <GeomPropertyDefn>
1358
+ <Name>Zachranka</Name>
1359
+ <ElementPath>Geometrie|DefinicniBod|Zachranka</ElementPath>
1360
+ <Type>Point</Type>
1361
+ </GeomPropertyDefn>
1362
+ <!-- Definiční bod typu Přístup pro hasiče -->
1363
+ <GeomPropertyDefn>
1364
+ <Name>Hasici</Name>
1365
+ <ElementPath>Geometrie|DefinicniBod|Hasici</ElementPath>
1366
+ <Type>Point</Type>
1367
+ </GeomPropertyDefn>
1368
+ <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
1369
+ <!-- Kód adresního místa -->
1370
+ <PropertyDefn>
1371
+ <Name>Kod</Name>
1372
+ <ElementPath>Kod</ElementPath>
1373
+ <Type>Integer</Type>
1374
+ </PropertyDefn>
1375
+ <!-- Identifikátor nesprávnosti na prvku -->
1376
+ <PropertyDefn>
1377
+ <Name>Nespravny</Name>
1378
+ <ElementPath>Nespravny</ElementPath>
1379
+ <Type>String</Type>
1380
+ <Width>5</Width>
1381
+ </PropertyDefn>
1382
+ <!-- Číslo domovní -->
1383
+ <PropertyDefn>
1384
+ <Name>CisloDomovni</Name>
1385
+ <ElementPath>CisloDomovni</ElementPath>
1386
+ <Type>Integer</Type>
1387
+ </PropertyDefn>
1388
+ <!-- Číselná část čísla orientačního -->
1389
+ <PropertyDefn>
1390
+ <Name>CisloOrientacni</Name>
1391
+ <ElementPath>CisloOrientacni</ElementPath>
1392
+ <Type>Integer</Type>
1393
+ </PropertyDefn>
1394
+ <!-- Koncové písmeno čísla orientačního -->
1395
+ <PropertyDefn>
1396
+ <Name>CisloOrientacniPismeno</Name>
1397
+ <ElementPath>CisloOrientacniPismeno</ElementPath>
1398
+ <Type>String</Type>
1399
+ <Width>1</Width>
1400
+ </PropertyDefn>
1401
+ <!-- PSČ adresní pošty -->
1402
+ <PropertyDefn>
1403
+ <Name>Psc</Name>
1404
+ <ElementPath>Psc</ElementPath>
1405
+ <Type>Integer</Type>
1406
+ </PropertyDefn>
1407
+ <!-- Nadřazený stavební objekt -->
1408
+ <PropertyDefn>
1409
+ <Name>StavebniObjektKod</Name>
1410
+ <ElementPath>StavebniObjekt|Kod</ElementPath>
1411
+ <Type>Integer</Type>
1412
+ </PropertyDefn>
1413
+ <!-- Nadřazená ulice -->
1414
+ <PropertyDefn>
1415
+ <Name>UliceKod</Name>
1416
+ <ElementPath>Ulice|Kod</ElementPath>
1417
+ <Type>Integer</Type>
1418
+ </PropertyDefn>
1419
+ <!-- Začátek platnosti -->
1420
+ <PropertyDefn>
1421
+ <Name>PlatiOd</Name>
1422
+ <ElementPath>PlatiOd</ElementPath>
1423
+ <Type>String</Type>
1424
+ <Width>19</Width>
1425
+ </PropertyDefn>
1426
+ <!-- Konec platnosti -->
1427
+ <PropertyDefn>
1428
+ <Name>PlatiDo</Name>
1429
+ <ElementPath>PlatiDo</ElementPath>
1430
+ <Type>String</Type>
1431
+ <Width>19</Width>
1432
+ </PropertyDefn>
1433
+ <!-- ID transakce v RUIAN -->
1434
+ <PropertyDefn>
1435
+ <Name>IdTransakce</Name>
1436
+ <ElementPath>IdTransakce</ElementPath>
1437
+ <Type>Integer</Type>
1438
+ <Subtype>Integer64</Subtype>
1439
+ </PropertyDefn>
1440
+ <!-- ID návrhu změn v ISUI -->
1441
+ <PropertyDefn>
1442
+ <Name>GlobalniIdNavrhuZmeny</Name>
1443
+ <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
1444
+ <Type>Integer</Type>
1445
+ <Subtype>Integer64</Subtype>
1446
+ </PropertyDefn>
1447
+ <!-- ID budovy v ISKN -->
1448
+ <PropertyDefn>
1449
+ <Name>IsknBudovaId</Name>
1450
+ <ElementPath>IsknBudovaId</ElementPath>
1451
+ <Type>Integer</Type>
1452
+ <Subtype>Integer64</Subtype>
1453
+ </PropertyDefn>
1454
+ </GMLFeatureClass>
1455
+ </GMLFeatureClassList>