@crossbind/port-gdal-wasi 2.0.0-beta.50

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 (488) hide show
  1. package/LICENSE +467 -0
  2. package/README.md +13 -0
  3. package/assets/gdal_empty_file.cpp +0 -0
  4. package/crossbind.build.js +1 -0
  5. package/crossbind.config.js +13 -0
  6. package/dist/prebuilt/CMakeLists.txt +57 -0
  7. package/dist/prebuilt/wasi-wasm32-st-release/crossbind-emccflags.fingerprint +1 -0
  8. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_atomic_ops.h +89 -0
  9. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_auto_close.h +72 -0
  10. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_compressor.h +112 -0
  11. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_config.h +203 -0
  12. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_config_extras.h +33 -0
  13. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_conv.h +528 -0
  14. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_csv.h +70 -0
  15. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_error.h +505 -0
  16. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_float.h +730 -0
  17. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_hash_set.h +82 -0
  18. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_http.h +317 -0
  19. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_json.h +398 -0
  20. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_list.h +58 -0
  21. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_minixml.h +210 -0
  22. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_multiproc.h +241 -0
  23. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_port.h +1266 -0
  24. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_progress.h +48 -0
  25. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_quad_tree.h +104 -0
  26. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_spawn.h +59 -0
  27. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_string.h +985 -0
  28. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_time.h +28 -0
  29. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_virtualmem.h +347 -0
  30. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_vsi.h +885 -0
  31. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_vsi_error.h +91 -0
  32. package/dist/prebuilt/wasi-wasm32-st-release/include/cpl_vsi_virtual.h +838 -0
  33. package/dist/prebuilt/wasi-wasm32-st-release/include/cplkeywordparser.h +60 -0
  34. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal.h +3013 -0
  35. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_adbc.h +46 -0
  36. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_alg.h +753 -0
  37. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_alg_priv.h +444 -0
  38. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_asyncreader.h +177 -0
  39. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_colortable.h +85 -0
  40. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_computedrasterband.h +334 -0
  41. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_cpp_functions.h +414 -0
  42. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_csv.h +24 -0
  43. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_dataset.h +959 -0
  44. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_defaultoverviews.h +133 -0
  45. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_driver.h +348 -0
  46. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_drivermanager.h +115 -0
  47. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_frmts.h +230 -0
  48. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_fwd.h +219 -0
  49. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_gcp.h +140 -0
  50. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_geotransform.h +251 -0
  51. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_majorobject.h +102 -0
  52. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_maskbands.h +170 -0
  53. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_mdreader.h +240 -0
  54. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_mem.h +32 -0
  55. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_minmax_element.hpp +1489 -0
  56. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_multidim.h +1356 -0
  57. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_multidim_cpp.h +33 -0
  58. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_multidomainmetadata.h +91 -0
  59. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_openinfo.h +94 -0
  60. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_pam.h +400 -0
  61. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_pam_multidim.h +114 -0
  62. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_priv.h +69 -0
  63. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_priv_templates.hpp +1516 -0
  64. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_proxy.h +475 -0
  65. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_raster_cpp.h +46 -0
  66. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_rasterband.h +779 -0
  67. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_rasterblock.h +184 -0
  68. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_rat.h +589 -0
  69. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_relationship.h +380 -0
  70. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_simplesurf.h +579 -0
  71. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_thread_pool.h +42 -0
  72. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_typetraits.h +517 -0
  73. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_utils.h +350 -0
  74. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_vector_cpp.h +31 -0
  75. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_version.h +37 -0
  76. package/dist/prebuilt/wasi-wasm32-st-release/include/gdal_vrt.h +88 -0
  77. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalalgorithm.h +19 -0
  78. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalalgorithm_c.h +292 -0
  79. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalalgorithm_cpp.h +3398 -0
  80. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalcachedpixelaccessor.h +446 -0
  81. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalgeorefpamdataset.h +72 -0
  82. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalgrid.h +102 -0
  83. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalgrid_priv.h +67 -0
  84. package/dist/prebuilt/wasi-wasm32-st-release/include/gdaljp2abstractdataset.h +60 -0
  85. package/dist/prebuilt/wasi-wasm32-st-release/include/gdaljp2metadata.h +236 -0
  86. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalpansharpen.h +260 -0
  87. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalsubdatasetinfo.h +104 -0
  88. package/dist/prebuilt/wasi-wasm32-st-release/include/gdalwarper.h +644 -0
  89. package/dist/prebuilt/wasi-wasm32-st-release/include/geoheif.h +58 -0
  90. package/dist/prebuilt/wasi-wasm32-st-release/include/gnm.h +781 -0
  91. package/dist/prebuilt/wasi-wasm32-st-release/include/gnm_api.h +99 -0
  92. package/dist/prebuilt/wasi-wasm32-st-release/include/gnmgraph.h +257 -0
  93. package/dist/prebuilt/wasi-wasm32-st-release/include/memdataset.h +385 -0
  94. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_api.h +948 -0
  95. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_core.h +1319 -0
  96. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_feature.h +2136 -0
  97. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_featurestyle.h +869 -0
  98. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_geocoding.h +45 -0
  99. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_geomcoordinateprecision.h +85 -0
  100. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_geometry.h +4382 -0
  101. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_p.h +330 -0
  102. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_recordbatch.h +128 -0
  103. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_refcountedptr.h +198 -0
  104. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_spatialref.h +1122 -0
  105. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_srs_api.h +1073 -0
  106. package/dist/prebuilt/wasi-wasm32-st-release/include/ogr_swq.h +534 -0
  107. package/dist/prebuilt/wasi-wasm32-st-release/include/ogrsf_frmts.h +803 -0
  108. package/dist/prebuilt/wasi-wasm32-st-release/include/rawdataset.h +268 -0
  109. package/dist/prebuilt/wasi-wasm32-st-release/include/vrtdataset.h +2595 -0
  110. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/3.20/FindLibLZMA.cmake +126 -0
  111. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/3.20/FindPostgreSQL.cmake +312 -0
  112. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/DefineFindPackage2.cmake +164 -0
  113. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/GDAL-targets-release.cmake +19 -0
  114. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/GDAL-targets.cmake +108 -0
  115. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/GDALConfig.cmake +27 -0
  116. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/GDALConfigVersion.cmake +65 -0
  117. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/GdalFindModulePath.cmake +13 -0
  118. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindBRUNSLI.cmake +74 -0
  119. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindBlosc.cmake +74 -0
  120. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindCURL.cmake +235 -0
  121. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindCryptoPP.cmake +91 -0
  122. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindDeflate.cmake +113 -0
  123. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindECW.cmake +172 -0
  124. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindEXPAT.cmake +156 -0
  125. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindExprTk.cmake +93 -0
  126. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindFYBA.cmake +38 -0
  127. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindFileGDB.cmake +93 -0
  128. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindFreeXL.cmake +67 -0
  129. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindGEOS.cmake +49 -0
  130. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindGIF.cmake +97 -0
  131. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindGeoTIFF.cmake +104 -0
  132. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindHDF4.cmake +133 -0
  133. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindHDFS.cmake +54 -0
  134. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindIDB.cmake +45 -0
  135. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindIconv.cmake +145 -0
  136. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindJSONC.cmake +48 -0
  137. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindKDU.cmake +105 -0
  138. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindLERC.cmake +46 -0
  139. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindLZ4.cmake +130 -0
  140. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindLibKML.cmake +134 -0
  141. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindMONGOCXX.cmake +56 -0
  142. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindMRSID.cmake +66 -0
  143. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindMSSQL_NCLI.cmake +86 -0
  144. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindMSSQL_ODBC.cmake +113 -0
  145. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindMySQL.cmake +83 -0
  146. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindNetCDF.cmake +209 -0
  147. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindODBC.cmake +259 -0
  148. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindODBCCPP.cmake +72 -0
  149. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindOpenCAD.cmake +97 -0
  150. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindOpenEXR.cmake +125 -0
  151. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindOpenJPEG.cmake +124 -0
  152. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindOracle.cmake +230 -0
  153. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindPCRE.cmake +28 -0
  154. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindPCRE2.cmake +27 -0
  155. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindPROJ.cmake +91 -0
  156. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindPodofo.cmake +94 -0
  157. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindPoppler.cmake +182 -0
  158. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindQHULL.cmake +44 -0
  159. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindRASTERLITE2.cmake +85 -0
  160. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindSFCGAL.cmake +87 -0
  161. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindSPATIALITE.cmake +74 -0
  162. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindSQLite3.cmake +208 -0
  163. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindShapelib.cmake +69 -0
  164. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindSpatialindex.cmake +18 -0
  165. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindTEIGHA.cmake +242 -0
  166. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindWebP.cmake +38 -0
  167. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/FindZSTD.cmake +95 -0
  168. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/packages/Findmuparser.cmake +53 -0
  169. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/DotnetImports.props.in +7 -0
  170. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/FindCSharp.cmake +72 -0
  171. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/FindDotnet.cmake +496 -0
  172. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/FindInt128.cmake +65 -0
  173. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/FindMono.cmake +163 -0
  174. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/GetGitHeadDate.cmake +33 -0
  175. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/GetGitRevisionDescription.cmake +181 -0
  176. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/GetGitRevisionDescription.cmake.in +50 -0
  177. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/OSXInstallDirs.cmake +214 -0
  178. package/dist/prebuilt/wasi-wasm32-st-release/lib/cmake/gdal/thirdparty/SystemSummary.cmake +89 -0
  179. package/dist/prebuilt/wasi-wasm32-st-release/lib/gdalplugins/drivers.ini +285 -0
  180. package/dist/prebuilt/wasi-wasm32-st-release/lib/libgdal.a +0 -0
  181. package/dist/prebuilt/wasi-wasm32-st-release/lib/pkgconfig/gdal.pc +17 -0
  182. package/dist/prebuilt/wasi-wasm32-st-release/share/bash-completion/completions/gdalinfo +1404 -0
  183. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/GDALLogoBW.svg +138 -0
  184. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/GDALLogoColor.svg +126 -0
  185. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/GDALLogoGS.svg +126 -0
  186. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/LICENSE.TXT +467 -0
  187. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/MM_m_idofic.csv +320 -0
  188. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/cubewerx_extra.wkt +48 -0
  189. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/default.rsc +0 -0
  190. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ecw_cs.wkt +1453 -0
  191. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/eedaconf.json +23 -0
  192. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/epsg.wkt +1 -0
  193. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/esri_StatePlane_extra.wkt +631 -0
  194. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gdal_algorithm.schema.json +240 -0
  195. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gdalg.schema.json +36 -0
  196. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gdalicon.png +0 -0
  197. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gdalinfo_output.schema.json +390 -0
  198. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gdalmdiminfo_output.schema.json +393 -0
  199. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gdaltileindex.xsd +264 -0
  200. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gdalvrt.xsd +948 -0
  201. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gfs.xsd +246 -0
  202. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gml_registry.xml +117 -0
  203. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gml_registry.xsd +66 -0
  204. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_center.csv +251 -0
  205. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_process.csv +102 -0
  206. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_subcenter.csv +63 -0
  207. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_0.csv +261 -0
  208. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_1.csv +261 -0
  209. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_13.csv +261 -0
  210. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_14.csv +261 -0
  211. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_15.csv +261 -0
  212. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_16.csv +261 -0
  213. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_17.csv +261 -0
  214. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_18.csv +261 -0
  215. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_19.csv +261 -0
  216. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_190.csv +261 -0
  217. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_191.csv +261 -0
  218. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_2.csv +261 -0
  219. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_20.csv +261 -0
  220. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_21.csv +261 -0
  221. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_22.csv +261 -0
  222. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_3.csv +261 -0
  223. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_4.csv +261 -0
  224. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_5.csv +261 -0
  225. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_6.csv +261 -0
  226. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_0_7.csv +261 -0
  227. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_10_0.csv +261 -0
  228. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_10_1.csv +261 -0
  229. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_10_191.csv +261 -0
  230. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_10_2.csv +261 -0
  231. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_10_3.csv +261 -0
  232. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_10_4.csv +261 -0
  233. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_1_0.csv +261 -0
  234. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_1_1.csv +261 -0
  235. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_1_2.csv +261 -0
  236. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_20_0.csv +261 -0
  237. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_20_1.csv +261 -0
  238. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_20_2.csv +261 -0
  239. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_20_3.csv +261 -0
  240. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_2_0.csv +261 -0
  241. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_2_3.csv +261 -0
  242. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_2_4.csv +261 -0
  243. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_2_5.csv +261 -0
  244. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_2_6.csv +261 -0
  245. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_2_7.csv +261 -0
  246. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_3_0.csv +261 -0
  247. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_3_1.csv +261 -0
  248. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_3_2.csv +243 -0
  249. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_3_3.csv +261 -0
  250. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_3_4.csv +261 -0
  251. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_3_5.csv +261 -0
  252. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_3_6.csv +261 -0
  253. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_0.csv +261 -0
  254. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_1.csv +261 -0
  255. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_10.csv +261 -0
  256. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_2.csv +261 -0
  257. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_3.csv +261 -0
  258. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_4.csv +261 -0
  259. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_5.csv +261 -0
  260. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_6.csv +261 -0
  261. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_7.csv +261 -0
  262. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_8.csv +261 -0
  263. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_4_9.csv +261 -0
  264. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_local_Canada.csv +5 -0
  265. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_local_HPC.csv +2 -0
  266. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_local_MRMS.csv +175 -0
  267. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_local_NCEP.csv +401 -0
  268. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_local_NDFD.csv +38 -0
  269. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_2_local_index.csv +7 -0
  270. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_4_5.csv +261 -0
  271. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/grib2_table_versions.csv +3 -0
  272. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gt_datum.csv +229 -0
  273. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/gt_ellips.csv +24 -0
  274. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/header.dxf +1138 -0
  275. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/inspire_cp_BasicPropertyUnit.gfs +57 -0
  276. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/inspire_cp_CadastralBoundary.gfs +60 -0
  277. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/inspire_cp_CadastralParcel.gfs +81 -0
  278. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/inspire_cp_CadastralZoning.gfs +161 -0
  279. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_AdmArea.gfs +59 -0
  280. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_AdmBdry.gfs +49 -0
  281. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_AdmPt.gfs +59 -0
  282. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_BldA.gfs +54 -0
  283. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_BldL.gfs +54 -0
  284. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_Cntr.gfs +54 -0
  285. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_CommBdry.gfs +49 -0
  286. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_CommPt.gfs +59 -0
  287. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_Cstline.gfs +54 -0
  288. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_ElevPt.gfs +54 -0
  289. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_GCP.gfs +94 -0
  290. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_LeveeEdge.gfs +49 -0
  291. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_RailCL.gfs +54 -0
  292. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_RdASL.gfs +44 -0
  293. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_RdArea.gfs +54 -0
  294. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_RdCompt.gfs +59 -0
  295. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_RdEdg.gfs +59 -0
  296. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_RdMgtBdry.gfs +49 -0
  297. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_RdSgmtA.gfs +59 -0
  298. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_RvrMgtBdry.gfs +49 -0
  299. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_SBAPt.gfs +49 -0
  300. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_SBArea.gfs +54 -0
  301. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_SBBdry.gfs +44 -0
  302. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_WA.gfs +54 -0
  303. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_WL.gfs +54 -0
  304. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_WStrA.gfs +54 -0
  305. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/jpfgdgml_WStrL.gfs +54 -0
  306. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/leaflet_template.html +102 -0
  307. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/nitf_spec.xml +3508 -0
  308. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/nitf_spec.xsd +178 -0
  309. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ogr_fields_override.schema.json +278 -0
  310. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ogrinfo_output.schema.json +532 -0
  311. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ogrvrt.xsd +526 -0
  312. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/osmconf.ini +134 -0
  313. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ozi_datum.csv +131 -0
  314. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ozi_ellips.csv +35 -0
  315. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/pci_datum.txt +530 -0
  316. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/pci_ellips.txt +129 -0
  317. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/pdfcomposition.xsd +703 -0
  318. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/plscenesconf.json +1985 -0
  319. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ruian_vf_ob_v1.gfs +1455 -0
  320. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ruian_vf_st_uvoh_v1.gfs +86 -0
  321. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ruian_vf_st_v1.gfs +1489 -0
  322. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/ruian_vf_v1.gfs +2126 -0
  323. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/s57agencies.csv +249 -0
  324. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/s57attributes.csv +484 -0
  325. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/s57expectedinput.csv +1008 -0
  326. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/s57objectclasses.csv +287 -0
  327. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/seed_2d.dgn +0 -0
  328. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/seed_3d.dgn +0 -0
  329. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/stateplane.csv +259 -0
  330. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/template_tiles.mapml +26 -0
  331. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/tms_LINZAntarticaMapTileGrid.json +190 -0
  332. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/tms_MapML_APSTILE.json +268 -0
  333. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/tms_MapML_CBMTILE.json +346 -0
  334. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/tms_NZTM2000.json +243 -0
  335. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/trailer.dxf +434 -0
  336. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/vdv452.xml +349 -0
  337. package/dist/prebuilt/wasi-wasm32-st-release/share/gdal/vdv452.xsd +45 -0
  338. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-config.1 +94 -0
  339. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-convert.1 +85 -0
  340. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-dataset-check.1 +102 -0
  341. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-dataset-copy.1 +108 -0
  342. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-dataset-delete.1 +92 -0
  343. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-dataset-identify.1 +224 -0
  344. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-dataset-rename.1 +108 -0
  345. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-dataset.1 +78 -0
  346. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-info.1 +1454 -0
  347. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-mdim-convert.1 +302 -0
  348. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-mdim-info.1 +312 -0
  349. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-mdim-mosaic.1 +218 -0
  350. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-mdim.1 +99 -0
  351. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-pipeline.1 +655 -0
  352. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-as-features.1 +248 -0
  353. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-aspect.1 +223 -0
  354. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-calc.1 +367 -0
  355. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-clean-collar.1 +209 -0
  356. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-clip.1 +322 -0
  357. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-color-blend.1 +630 -0
  358. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-color-map.1 +243 -0
  359. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-compare.1 +215 -0
  360. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-contour.1 +304 -0
  361. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-convert.1 +167 -0
  362. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-create.1 +290 -0
  363. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-edit.1 +405 -0
  364. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-fill-nodata.1 +219 -0
  365. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-footprint.1 +370 -0
  366. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-hillshade.1 +321 -0
  367. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-index.1 +346 -0
  368. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-info.1 +616 -0
  369. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-mosaic.1 +313 -0
  370. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-neighbors.1 +338 -0
  371. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-nodata-to-alpha.1 +148 -0
  372. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-overview-add.1 +292 -0
  373. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-overview-delete.1 +115 -0
  374. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-overview-refresh.1 +206 -0
  375. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-pansharpen.1 +266 -0
  376. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-pipeline.1 +1256 -0
  377. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-pixel-info.1 +486 -0
  378. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-polygonize.1 +266 -0
  379. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-proximity.1 +233 -0
  380. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-read.1 +94 -0
  381. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-reclassify.1 +261 -0
  382. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-reproject.1 +539 -0
  383. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-resize.1 +213 -0
  384. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-rgb-to-palette.1 +202 -0
  385. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-roughness.1 +183 -0
  386. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-scale.1 +256 -0
  387. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-select.1 +216 -0
  388. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-set-type.1 +144 -0
  389. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-sieve.1 +209 -0
  390. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-slope.1 +252 -0
  391. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-stack.1 +264 -0
  392. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-tile.1 +511 -0
  393. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-tpi.1 +184 -0
  394. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-tri.1 +200 -0
  395. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-unscale.1 +189 -0
  396. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-update.1 +203 -0
  397. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-viewshed.1 +467 -0
  398. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-write.1 +121 -0
  399. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster-zonal-stats.1 +547 -0
  400. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-raster.1 +208 -0
  401. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-buffer.1 +438 -0
  402. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-check-coverage.1 +345 -0
  403. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-check-geometry.1 +333 -0
  404. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-clean-coverage.1 +341 -0
  405. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-clip.1 +358 -0
  406. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-combine.1 +398 -0
  407. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-concat.1 +387 -0
  408. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-convert.1 +280 -0
  409. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-create.1 +241 -0
  410. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-dissolve.1 +274 -0
  411. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-edit.1 +342 -0
  412. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-explode-collections.1 +304 -0
  413. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-export-schema.1 +194 -0
  414. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-filter.1 +293 -0
  415. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-grid.1 +704 -0
  416. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-index.1 +300 -0
  417. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-info.1 +558 -0
  418. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-layer-algebra.1 +352 -0
  419. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-make-point.1 +272 -0
  420. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-make-valid.1 +315 -0
  421. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-partition.1 +339 -0
  422. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-pipeline.1 +1181 -0
  423. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-rasterize.1 +406 -0
  424. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-read.1 +97 -0
  425. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-rename-layer.1 +340 -0
  426. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-segmentize.1 +290 -0
  427. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-select.1 +325 -0
  428. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-set-field-type.1 +303 -0
  429. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-set-geom-type.1 +383 -0
  430. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-simplify.1 +309 -0
  431. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-sort.1 +137 -0
  432. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-sql.1 +355 -0
  433. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-swap-xy.1 +278 -0
  434. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-update.1 +168 -0
  435. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector-write.1 +213 -0
  436. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vector.1 +177 -0
  437. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vsi-copy.1 +109 -0
  438. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vsi-delete.1 +98 -0
  439. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vsi-list.1 +135 -0
  440. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vsi-move.1 +112 -0
  441. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vsi-sozip.1 +385 -0
  442. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vsi-sync.1 +145 -0
  443. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal-vsi.1 +90 -0
  444. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal.1 +143 -0
  445. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal2tiles.1 +438 -0
  446. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_calc.1 +402 -0
  447. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_contour.1 +352 -0
  448. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_create.1 +204 -0
  449. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_edit.1 +294 -0
  450. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_fillnodata.1 +150 -0
  451. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_footprint.1 +302 -0
  452. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_grid.1 +677 -0
  453. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_merge.1 +276 -0
  454. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_pansharpen.1 +233 -0
  455. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_polygonize.1 +176 -0
  456. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_proximity.1 +179 -0
  457. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_rasterize.1 +368 -0
  458. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_retile.1 +221 -0
  459. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_sieve.1 +82 -0
  460. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_translate.1 +673 -0
  461. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdal_viewshed.1 +335 -0
  462. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdaladdo.1 +451 -0
  463. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdalbuildvrt.1 +405 -0
  464. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdalcompare.1 +196 -0
  465. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdaldem.1 +675 -0
  466. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdalinfo.1 +593 -0
  467. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdallocationinfo.1 +296 -0
  468. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdalmanage.1 +179 -0
  469. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdalmdiminfo.1 +268 -0
  470. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdalmdimtranslate.1 +300 -0
  471. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdalmove.1 +116 -0
  472. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdalsrsinfo.1 +333 -0
  473. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdaltindex.1 +453 -0
  474. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdaltransform.1 +345 -0
  475. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gdalwarp.1 +1067 -0
  476. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gnmanalyse.1 +121 -0
  477. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/gnmmanage.1 +182 -0
  478. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/nearblack.1 +185 -0
  479. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/ogr2ogr.1 +1078 -0
  480. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/ogr_layer_algebra.1 +241 -0
  481. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/ogrinfo.1 +689 -0
  482. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/ogrlineref.1 +243 -0
  483. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/ogrmerge.1 +293 -0
  484. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/ogrtindex.1 +166 -0
  485. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/pct2rgb.1 +110 -0
  486. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/rgb2pct.1 +149 -0
  487. package/dist/prebuilt/wasi-wasm32-st-release/share/man/man1/sozip.1 +273 -0
  488. package/package.json +41 -0
@@ -0,0 +1,1067 @@
1
+ .\" Man page generated from reStructuredText.
2
+ .
3
+ .
4
+ .nr rst2man-indent-level 0
5
+ .
6
+ .de1 rstReportMargin
7
+ \\$1 \\n[an-margin]
8
+ level \\n[rst2man-indent-level]
9
+ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
10
+ -
11
+ \\n[rst2man-indent0]
12
+ \\n[rst2man-indent1]
13
+ \\n[rst2man-indent2]
14
+ ..
15
+ .de1 INDENT
16
+ .\" .rstReportMargin pre:
17
+ . RS \\$1
18
+ . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
19
+ . nr rst2man-indent-level +1
20
+ .\" .rstReportMargin post:
21
+ ..
22
+ .de UNINDENT
23
+ . RE
24
+ .\" indent \\n[an-margin]
25
+ .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
26
+ .nr rst2man-indent-level -1
27
+ .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
28
+ .in \\n[rst2man-indent\\n[rst2man-indent-level]]u
29
+ ..
30
+ .TH "GDALWARP" "1" "Aug 18, 2026" "" "GDAL"
31
+ .SH NAME
32
+ gdalwarp \- Image reprojection and warping utility.
33
+ .SH SYNOPSIS
34
+ .INDENT 0.0
35
+ .INDENT 3.5
36
+ .sp
37
+ .EX
38
+ Usage: gdalwarp [\-\-help] [\-\-long\-usage] [\-\-help\-general]
39
+ [\-\-quiet] [\-overwrite] [\-of <output_format>]
40
+ [\-co <NAME>=<VALUE>]... [\-s_srs <srs_def>] [\-t_srs <srs_def>]
41
+ [[\-srcalpha]|[\-nosrcalpha]]
42
+ [\-dstalpha] [\-tr <xres> <yres>|square] [\-ts <width> <height>]
43
+ [\-te <xmin> <ymin> <xmax> <ymax>] [\-te_srs <srs_def>]
44
+ [\-r near|bilinear|cubic|cubicspline|lanczos|average|rms|mode|min|max|med|q1|q3|sum]
45
+ [\-ot Byte|Int8|[U]Int{16|32|64}|CInt{16|32}|[C]Float{32|64}]
46
+ <src_dataset_name>... <dst_dataset_name>
47
+
48
+ Advanced options:
49
+ [\-wo <NAME>=<VALUE>]... [\-multi] [\-s_coord_epoch <epoch>]
50
+ [\-t_coord_epoch <epoch>] [\-ct <string>]
51
+ [[\-tps]|[\-rpc]|[\-geoloc]]
52
+ [\-order <1|2|3>] [\-refine_gcps <tolerance> [<minimum_gcps>]]
53
+ [\-to <NAME>=<VALUE>]... [\-et <err_threshold>]
54
+ [\-wm <memory_in_mb>] [\-srcnodata \(dq<value>[ <value>]...\(dq]
55
+ [\-dstnodata \(dq<value>[ <value>]...\(dq] [\-tap]
56
+ [\-wt Byte|Int8|[U]Int{16|32|64}|CInt{16|32}|[C]Float{32|64}]
57
+ [\-cutline <datasource>|<WKT>] [\-cutline_srs <srs_def>]
58
+ [\-cwhere <expression>]
59
+ [[\-cl <layername>]|[\-csql <query>]]
60
+ [\-cblend <distance>] [\-crop_to_cutline] [\-nomd]
61
+ [\-cvmd <meta_conflict_value>] [\-setci] [\-oo <NAME>=<VALUE>]...
62
+ [\-doo <NAME>=<VALUE>]... [\-ovr <level>|AUTO|AUTO\-<n>|NONE]
63
+ [[\-vshift]|[\-novshiftgrid]]
64
+ [\-if <format>]... [\-srcband <band>]... [\-dstband <band>]...
65
+ .EE
66
+ .UNINDENT
67
+ .UNINDENT
68
+ .SH DESCRIPTION
69
+ .sp
70
+ The \fBgdalwarp\fP utility is an image mosaicing, reprojection and warping
71
+ utility. The program can reproject to any supported projection,
72
+ and can also apply GCPs stored with the image if the image is \(dqraw\(dq
73
+ with control information.
74
+ .sp
75
+ \fBTIP:\fP
76
+ .INDENT 0.0
77
+ .INDENT 3.5
78
+ Equivalent in new \(dqgdal\(dq command line interface:
79
+ .INDENT 0.0
80
+ .IP \(bu 2
81
+ \fI\%gdal raster reproject\fP for reprojection
82
+ .IP \(bu 2
83
+ \fI\%gdal raster update\fP to update the content of a raster with another one
84
+ .UNINDENT
85
+ .UNINDENT
86
+ .UNINDENT
87
+ .INDENT 0.0
88
+ .TP
89
+ .B \-\-help
90
+ Show this help message and exit
91
+ .UNINDENT
92
+ .INDENT 0.0
93
+ .TP
94
+ .B \-\-help\-general
95
+ Gives a brief usage message for the generic GDAL commandline options and exit.
96
+ .UNINDENT
97
+ .INDENT 0.0
98
+ .TP
99
+ .B \-q, \-\-quiet
100
+ Suppress progress messages and other non\-error output.
101
+ .UNINDENT
102
+ .INDENT 0.0
103
+ .TP
104
+ .B \-b <n>
105
+ .UNINDENT
106
+ .INDENT 0.0
107
+ .TP
108
+ .B \-srcband <n>
109
+ Added in version 3.7.
110
+
111
+ .sp
112
+ Specify an input band number to warp (between 1 and the number of bands
113
+ of the source dataset).
114
+ .sp
115
+ This option is used to warp a subset of the input bands. All input bands
116
+ are used when it is not specified.
117
+ .sp
118
+ This option may be repeated multiple times to select several input bands.
119
+ The order in which bands are specified will be the order in which they
120
+ appear in the output dataset (unless \fI\%\-dstband\fP is specified).
121
+ .sp
122
+ The alpha band should not be specified in the list, as it will be
123
+ automatically retrieved (unless \fI\%\-nosrcalpha\fP is specified).
124
+ .sp
125
+ The following invocation will warp an input datasets with bands ordered as
126
+ Blue, Green, Red, NearInfraRed in an output dataset with bands ordered as
127
+ Red, Green, Blue.
128
+ .INDENT 7.0
129
+ .INDENT 3.5
130
+ .sp
131
+ .EX
132
+ gdalwarp in_bgrn.tif out_rgb.tif \-b 3 \-b 2 \-b 1 \-overwrite
133
+ .EE
134
+ .UNINDENT
135
+ .UNINDENT
136
+ .UNINDENT
137
+ .INDENT 0.0
138
+ .TP
139
+ .B \-dstband <n>
140
+ Added in version 3.7.
141
+
142
+ .sp
143
+ Specify the output band number in which to warp. In practice, this option
144
+ is only useful when updating an existing dataset, e.g to warp one band at
145
+ at time.
146
+ .INDENT 7.0
147
+ .INDENT 3.5
148
+ .sp
149
+ .EX
150
+ gdal_create \-if in_red.tif \-bands 3 out_rgb.tif
151
+ gdalwarp in_red.tif out_rgb.tif \-srcband 1 \-dstband 1
152
+ gdalwarp in_green.tif out_rgb.tif \-srcband 1 \-dstband 2
153
+ gdalwarp in_blue.tif out_rgb.tif \-srcband 1 \-dstband 3
154
+ .EE
155
+ .UNINDENT
156
+ .UNINDENT
157
+ .sp
158
+ If \fI\%\-srcband\fP is specified, there must be as many occurrences of
159
+ \fI\%\-dstband\fP as there are of \fI\%\-srcband\fP\&.
160
+ .sp
161
+ The output alpha band should not be specified, as it will be automatically
162
+ created if the input dataset has an alpha band, or if \fI\%\-dstalpha\fP
163
+ is specified.
164
+ .sp
165
+ If \fI\%\-dstband\fP is not specified, then
166
+ \fB\-dstband 1 \-dstband 2 ... \-dstband N\fP is assumed where N is the number
167
+ of input bands (specified explicitly either with \fI\%\-srcband\fP or
168
+ implicitly)
169
+ .UNINDENT
170
+ .INDENT 0.0
171
+ .TP
172
+ .B \-s_srs <srs def>
173
+ Set source spatial reference. If not specified the SRS found in the input
174
+ dataset will be used.
175
+ .sp
176
+ The coordinate reference systems that can be passed are anything supported by the
177
+ OGRSpatialReference.SetFromUserInput() call, which includes EPSG Projected,
178
+ Geographic or Compound CRS (i.e. EPSG:4296), a well known text (WKT) CRS definition,
179
+ PROJ.4 declarations, or the name of a .prj file containing a WKT CRS definition.
180
+ .sp
181
+ If the SRS has an explicit vertical datum that points to a geoid grid, and the input dataset is a
182
+ single band dataset, a vertical correction will be applied to the values of the
183
+ dataset.
184
+ .UNINDENT
185
+ .INDENT 0.0
186
+ .TP
187
+ .B \-s_coord_epoch <epoch>
188
+ Added in version 3.4.
189
+
190
+ .sp
191
+ Assign a coordinate epoch, linked with the source SRS. Useful when the
192
+ source SRS is a dynamic CRS. Only taken into account if \fI\%\-s_srs\fP
193
+ is used.
194
+ .sp
195
+ Before PROJ 9.4, \fI\%\-s_coord_epoch\fP and \fI\%\-t_coord_epoch\fP were
196
+ mutually exclusive, due to lack of support for transformations between two dynamic CRS.
197
+ .UNINDENT
198
+ .INDENT 0.0
199
+ .TP
200
+ .B \-t_srs <srs_def>
201
+ Set target spatial reference.
202
+ .sp
203
+ A source SRS must be available for reprojection to occur. The source SRS
204
+ will be by default the one found in the input dataset when it is available,
205
+ or as overridden by the user with \fI\%\-s_srs\fP
206
+ .sp
207
+ The coordinate reference systems that can be passed are anything supported by the
208
+ OGRSpatialReference.SetFromUserInput() call, which includes EPSG Projected,
209
+ Geographic or Compound CRS (i.e. EPSG:4296), a well known text (WKT) CRS definition,
210
+ PROJ.4 declarations, or the name of a .prj file containing a WKT CRS definition.
211
+ .sp
212
+ If the SRS has an explicit vertical datum that points to a geoid grid, and the input dataset is a
213
+ single band dataset, a vertical correction will be applied to the values of the
214
+ dataset.
215
+ .UNINDENT
216
+ .INDENT 0.0
217
+ .TP
218
+ .B \-t_coord_epoch <epoch>
219
+ Added in version 3.4.
220
+
221
+ .sp
222
+ Assign a coordinate epoch, linked with the target SRS. Useful when the
223
+ target SRS is a dynamic CRS. Only taken into account if \fI\%\-t_srs\fP
224
+ is used.
225
+ .sp
226
+ Before PROJ 9.4, \fI\%\-s_coord_epoch\fP and \fI\%\-t_coord_epoch\fP were
227
+ mutually exclusive, due to lack of support for transformations between two dynamic CRS.
228
+ .UNINDENT
229
+ .INDENT 0.0
230
+ .TP
231
+ .B \-ct <string>
232
+ A PROJ string (single step operation or multiple step string
233
+ starting with +proj=pipeline), a WKT2 string describing a CoordinateOperation,
234
+ or a \fI\%urn:ogc:def:coordinateOperation:EPSG::XXXX\fP URN overriding the default
235
+ transformation from the source to the target CRS.
236
+ .sp
237
+ It must take into account the axis order of the source and target CRS, that
238
+ is typically include a \fBstep proj=axisswap order=2,1\fP at the beginning of
239
+ the pipeline if the source CRS has northing/easting axis order, and/or at
240
+ the end of the pipeline if the target CRS has northing/easting axis order.
241
+ .sp
242
+ When creating a new output file, using \fI\%\-t_srs\fP is still necessary
243
+ to have the target CRS written in the metadata of the output file,
244
+ but the parameters of the CoordinateOperation will override those of the
245
+ standard transformation.
246
+ .sp
247
+ Added in version 3.0.
248
+
249
+ .UNINDENT
250
+ .INDENT 0.0
251
+ .TP
252
+ .B \-to <NAME>=<VALUE>
253
+ Set a transformer option suitable to pass to \fI\%GDALCreateGenImgProjTransformer2()\fP\&.
254
+ See \fI\%GDALCreateRPCTransformerV2()\fP for RPC specific options.
255
+ .UNINDENT
256
+ .INDENT 0.0
257
+ .TP
258
+ .B \-vshift
259
+ Force the use of vertical shift. This option is generally not necessary,
260
+ except when using an explicit coordinate transformation (\fI\%\-ct\fP),
261
+ and not specifying an explicit source and target SRS.
262
+ .sp
263
+ Added in version 3.4.
264
+
265
+ .UNINDENT
266
+ .INDENT 0.0
267
+ .TP
268
+ .B \-novshift
269
+ Disable the use of vertical shift when one of the source or target SRS has
270
+ an explicit vertical datum, and the input dataset is a single band dataset.
271
+ .sp
272
+ \fBNOTE:\fP
273
+ .INDENT 7.0
274
+ .INDENT 3.5
275
+ this option was named \fB\-novshiftgrid\fP until GDAL 3.3.
276
+ .UNINDENT
277
+ .UNINDENT
278
+ .sp
279
+ Added in version 3.4.
280
+
281
+ .UNINDENT
282
+ .INDENT 0.0
283
+ .TP
284
+ .B \-order <n>
285
+ order of polynomial used for warping (1 to 3). The default is to select
286
+ a polynomial order based on the number of GCPs.
287
+ .UNINDENT
288
+ .INDENT 0.0
289
+ .TP
290
+ .B \-tps
291
+ Force use of Thin Plate Spline transformer based on available GCPs.
292
+ .sp
293
+ \fBWARNING:\fP
294
+ .INDENT 7.0
295
+ .INDENT 3.5
296
+ Using a Thin Plate Spline transformer with more than a few
297
+ thousand GCPs requires significant RAM usage (at least \fBnumGCPs\fP * \fBnumGCPs\fP * 8 bytes)
298
+ and processing time.
299
+ .UNINDENT
300
+ .UNINDENT
301
+ .UNINDENT
302
+ .INDENT 0.0
303
+ .TP
304
+ .B \-rpc
305
+ Force use of RPCs.
306
+ .UNINDENT
307
+ .INDENT 0.0
308
+ .TP
309
+ .B \-geoloc
310
+ Force use of Geolocation Arrays.
311
+ .UNINDENT
312
+ .INDENT 0.0
313
+ .TP
314
+ .B \-et <err_threshold>
315
+ Error threshold for transformation approximation, expressed as a number of
316
+ source pixels. Defaults to 0.125 pixels unless the \fBRPC_DEM\fP transformer
317
+ option is specified, in which case an exact transformer, i.e.
318
+ \fBerr_threshold=0\fP, will be used.
319
+ .UNINDENT
320
+ .INDENT 0.0
321
+ .TP
322
+ .B \-refine_gcps <tolerance> [<minimum_gcps>]
323
+ Refines the GCPs by automatically eliminating outliers.
324
+ Outliers will be eliminated until minimum_gcps are left or when no outliers can be detected.
325
+ The tolerance is passed to adjust when a GCP will be eliminated.
326
+ Note that GCP refinement only works with polynomial interpolation.
327
+ The tolerance is in pixel units if no projection is available, otherwise it is in SRS units.
328
+ If minimum_gcps is not provided, the minimum GCPs according to the polynomial model is used.
329
+ .UNINDENT
330
+ .INDENT 0.0
331
+ .TP
332
+ .B \-te <xmin> <ymin> <xmax> <ymax>
333
+ Set georeferenced extents of output file to be created (in target SRS by
334
+ default, or in the SRS specified with \fI\%\-te_srs\fP)
335
+ .UNINDENT
336
+ .INDENT 0.0
337
+ .TP
338
+ .B \-te_srs <srs_def>
339
+ Specifies the SRS in
340
+ which to interpret the coordinates given with \-te. The <srs_def> may
341
+ be any of the usual GDAL/OGR forms, complete WKT, PROJ.4, EPSG:n or a file
342
+ containing the WKT.
343
+ This must not be confused with \-t_srs which is the target SRS of the output
344
+ dataset. \fI\%\-te_srs\fP is a convenience e.g. when knowing the output coordinates in a
345
+ geodetic long/lat SRS, but still wanting a result in a projected coordinate system.
346
+ .UNINDENT
347
+ .INDENT 0.0
348
+ .TP
349
+ .B \-tr <xres> <yres> | \-tr square
350
+ Set output file resolution (in target georeferenced units).
351
+ .sp
352
+ If not specified (or not deduced from \-te and \-ts), gdalwarp will, in the
353
+ general case, generate an output raster with xres=yres.
354
+ .sp
355
+ Starting with GDAL 3.7, if neither \fI\%\-tr\fP nor \fI\%\-ts\fP are specified,
356
+ that no reprojection is involved (including taking into account geolocation arrays
357
+ or RPC), the resolution of the source file(s) will be preserved (in previous
358
+ version, an output raster with xres=yres was always generated).
359
+ It is possible to ask square pixels to still be generated, by specifying
360
+ \fBsquare\fP as the value for \fI\%\-tr\fP\&.
361
+ .UNINDENT
362
+ .INDENT 0.0
363
+ .TP
364
+ .B \-tap
365
+ (target aligned pixels) align the coordinates of the extent of the output
366
+ file to the values of the \fI\%\-tr\fP, such that the aligned extent
367
+ includes the minimum extent (edges lines/columns that are detected as
368
+ blank, before actual warping, will be removed starting with GDAL 3.8).
369
+ Alignment means that xmin / resx, ymin / resy,
370
+ xmax / resx and ymax / resy are integer values. It does not necessarily
371
+ mean that the output grid aligns with the input grid.
372
+ .UNINDENT
373
+ .INDENT 0.0
374
+ .TP
375
+ .B \-ts <width> <height>
376
+ Set output file size in pixels and lines. If width or height is set to 0,
377
+ the other dimension will be guessed from the computed resolution. Note that
378
+ \fI\%\-ts\fP cannot be used with \fI\%\-tr\fP
379
+ .UNINDENT
380
+ .INDENT 0.0
381
+ .TP
382
+ .B \-ovr <level>|AUTO|AUTO\-<n>|NONE
383
+ To specify which overview level of source files must be used. The default choice,
384
+ AUTO, will select the overview level whose resolution is the closest to the
385
+ target resolution. Specify an integer value (0\-based, i.e. 0=1st overview level)
386
+ to select a particular level. Specify AUTO\-n where n is an integer greater or
387
+ equal to 1, to select an overview level below the AUTO one. Or specify NONE to
388
+ force the base resolution to be used (can be useful if overviews have been
389
+ generated with a low quality resampling method, and the warping is done using a
390
+ higher quality resampling method).
391
+ .UNINDENT
392
+ .INDENT 0.0
393
+ .TP
394
+ .B \-wo <NAME>=<VALUE>
395
+ Set a warp option. The \fI\%GDALWarpOptions::papszWarpOptions\fP docs show all options.
396
+ Multiple \fI\%\-wo\fP options may be listed.
397
+ .UNINDENT
398
+ .INDENT 0.0
399
+ .TP
400
+ .B \-ot <type>
401
+ Force the output image bands to have a specific data type supported by the
402
+ driver, which may be one of the following: \fBByte\fP, \fBInt8\fP, \fBUInt16\fP,
403
+ \fBInt16\fP, \fBUInt32\fP, \fBInt32\fP, \fBUInt64\fP, \fBInt64\fP, \fBFloat32\fP, \fBFloat64\fP, \fBCInt16\fP,
404
+ \fBCInt32\fP, \fBCFloat32\fP or \fBCFloat64\fP\&.
405
+ .UNINDENT
406
+ .INDENT 0.0
407
+ .TP
408
+ .B \-wt <type>
409
+ Working pixel data type. The data type of pixels in the source image and
410
+ destination image buffers.
411
+ .UNINDENT
412
+ .INDENT 0.0
413
+ .TP
414
+ .B \-r <resampling_method>
415
+ Resampling method to use. Available methods are:
416
+ .sp
417
+ \fBnear\fP: nearest neighbour resampling (default for non\-COG drivers, fastest algorithm, worst interpolation quality).
418
+ .sp
419
+ \fBbilinear\fP: bilinear resampling.
420
+ .sp
421
+ \fBcubic\fP: cubic resampling (default for COG driver).
422
+ .sp
423
+ \fBcubicspline\fP: cubic spline resampling.
424
+ .sp
425
+ \fBlanczos\fP: Lanczos windowed sinc resampling.
426
+ .sp
427
+ \fBaverage\fP: average resampling, computes the weighted average of all non\-NODATA contributing pixels.
428
+ .sp
429
+ \fBrms\fP root mean square / quadratic mean of all non\-NODATA contributing pixels (GDAL >= 3.3)
430
+ .sp
431
+ \fBmode\fP: mode resampling, selects the value which appears most often of all the sampled points. In the case of ties, the first value identified as the mode will be selected.
432
+ .sp
433
+ \fBmax\fP: maximum resampling, selects the maximum value from all non\-NODATA contributing pixels.
434
+ .sp
435
+ \fBmin\fP: minimum resampling, selects the minimum value from all non\-NODATA contributing pixels.
436
+ .sp
437
+ \fBmed\fP: median resampling, selects the median value of all non\-NODATA contributing pixels.
438
+ .sp
439
+ \fBq1\fP: first quartile resampling, selects the first quartile value of all non\-NODATA contributing pixels.
440
+ .sp
441
+ \fBq3\fP: third quartile resampling, selects the third quartile value of all non\-NODATA contributing pixels.
442
+ .sp
443
+ \fBsum\fP: compute the weighted sum of all non\-NODATA contributing pixels (since GDAL 3.1)
444
+ .sp
445
+ \fBNOTE:\fP
446
+ .INDENT 7.0
447
+ .INDENT 3.5
448
+ When downsampling is performed (use of \fI\%\-tr\fP or \fI\%\-ts\fP), existing
449
+ overviews (either internal/implicit or external ones) on the source image
450
+ will be used by default by selecting the closest overview to the desired output
451
+ resolution.
452
+ The resampling method used to create those overviews is generally not the one you
453
+ specify through the \fI\%\-r\fP option. Some formats, like JPEG2000, can contain
454
+ significant outliers due to how wavelet compression works. It might thus be useful in
455
+ those situations to use the \fI\%\-ovr\fP \fBNONE\fP option to prevent existing overviews to
456
+ be used.
457
+ .UNINDENT
458
+ .UNINDENT
459
+ .UNINDENT
460
+ .INDENT 0.0
461
+ .TP
462
+ .B \-srcnodata \(dq<value>[ <value>]...\(dq
463
+ Set nodata masking values for input bands (different values can be supplied
464
+ for each band). If more than one value is supplied all values should be quoted
465
+ to keep them together as a single operating system argument.
466
+ Masked values will not be used in interpolation (details given in \fI\%Nodata / source validity mask handling\fP)
467
+ .sp
468
+ Use a value of \fBNone\fP to ignore intrinsic nodata settings on the source dataset.
469
+ .sp
470
+ When this option is set to a non\-\fBNone\fP value, it causes the \fBUNIFIED_SRC_NODATA\fP
471
+ warping option (see \fI\%GDALWarpOptions::papszWarpOptions\fP) to be
472
+ set to \fBYES\fP, if it is not explicitly set.
473
+ .sp
474
+ If \fB\-srcnodata\fP is not explicitly set, but the source dataset has nodata values,
475
+ they will be taken into account, with \fBUNIFIED_SRC_NODATA\fP at \fBPARTIAL\fP
476
+ by default.
477
+ .UNINDENT
478
+ .INDENT 0.0
479
+ .TP
480
+ .B \-dstnodata \(dq<value>[ <value>]...\(dq
481
+ Set nodata values
482
+ for output bands (different values can be supplied for each band). If more
483
+ than one value is supplied all values should be quoted to keep them together
484
+ as a single operating system argument. New files will be initialized to this
485
+ value and if possible the nodata value will be recorded in the output
486
+ file. Use a value of \fBNone\fP to ensure that nodata is not defined.
487
+ If this argument is not used then nodata values will be copied from the source dataset.
488
+ .UNINDENT
489
+ .INDENT 0.0
490
+ .TP
491
+ .B \-srcalpha
492
+ Force the last band of a source image to be
493
+ considered as a source alpha band.
494
+ .UNINDENT
495
+ .INDENT 0.0
496
+ .TP
497
+ .B \-nosrcalpha
498
+ Prevent the alpha band of a source image to be
499
+ considered as such (it will be warped as a regular band)
500
+ .UNINDENT
501
+ .INDENT 0.0
502
+ .TP
503
+ .B \-dstalpha
504
+ Create an output alpha band to identify nodata (unset/transparent) pixels.
505
+ .UNINDENT
506
+ .INDENT 0.0
507
+ .TP
508
+ .B \-wm <memory_in_mb>
509
+ Set the amount of memory that the
510
+ warp API is allowed to use for caching.
511
+ Defaults to 64 MB.
512
+ Since GDAL 3.10, the value can be specified either as a fixed amount of
513
+ memory (e.g., \fB\-wm 200MB\fP, \fB\-wm 1G\fP) or as a percentage of usable
514
+ RAM (\fB\-wm 10%\fP).
515
+ In earlier versions, or if a unit is not specified, the value is interpreted as being
516
+ in megabytes if the value is less than 10000. For values >=10000, it is
517
+ interpreted as bytes.
518
+ .sp
519
+ The warper will total up the memory required to hold the input and output
520
+ image arrays and any auxiliary masking arrays and if they are larger than
521
+ the \(dqwarp memory\(dq allowed it will subdivide the chunk into smaller chunks
522
+ and try again.
523
+ .sp
524
+ If the \-wm value is very small there is some extra overhead in doing many
525
+ small chunks so setting it larger is better but it is a matter of
526
+ diminishing returns.
527
+ .UNINDENT
528
+ .INDENT 0.0
529
+ .TP
530
+ .B \-multi
531
+ Use multithreaded warping implementation.
532
+ Two threads will be used to process chunks of image and perform
533
+ input/output operation simultaneously. Note that computation is not
534
+ multithreaded itself. To do that, you can use the \fI\%\-wo\fP NUM_THREADS=val/ALL_CPUS
535
+ option, which can be combined with \fI\%\-multi\fP
536
+ .UNINDENT
537
+ .INDENT 0.0
538
+ .TP
539
+ .B \-if <format>
540
+ Format/driver name to be attempted to open the input file(s). It is generally
541
+ not necessary to specify it, but it can be used to skip automatic driver
542
+ detection, when it fails to select the appropriate driver.
543
+ This option can be repeated several times to specify several candidate drivers.
544
+ Note that it does not force those drivers to open the dataset. In particular,
545
+ some drivers have requirements on file extensions.
546
+ .sp
547
+ Added in version 3.2.
548
+
549
+ .UNINDENT
550
+ .INDENT 0.0
551
+ .TP
552
+ .B \-of <format>
553
+ Select the output format. If not specified, the format is guessed from the
554
+ extension. Use the short format name.
555
+ .UNINDENT
556
+ .INDENT 0.0
557
+ .TP
558
+ .B \-co <NAME>=<VALUE>
559
+ Many formats have one or more optional creation options that can be
560
+ used to control particulars about the file created. For instance,
561
+ the GeoTIFF driver supports creation options to control compression,
562
+ and whether the file should be tiled.
563
+ .sp
564
+ The creation options available vary by format driver, and some
565
+ simple formats have no creation options at all. A list of options
566
+ supported for a format can be listed with the
567
+ \fI\%\-\-format\fP
568
+ command line option but the documentation for the format is the
569
+ definitive source of information on driver creation options.
570
+ See \fI\%Raster drivers\fP format
571
+ specific documentation for legal creation options for each format.
572
+ .UNINDENT
573
+ .INDENT 0.0
574
+ .TP
575
+ .B \-cutline <datasource>|<WKT>
576
+ Enable use of a blend cutline from the name of a vector dataset.
577
+ Starting with GDAL 3.9, a WKT geometry string starting with POLYGON or
578
+ MULTIPOLYGON can also be specified.
579
+ .UNINDENT
580
+ .INDENT 0.0
581
+ .TP
582
+ .B \-cutline_srs <srs_def>
583
+ Added in version 3.9.
584
+
585
+ .sp
586
+ Sets or overrides the SRS of the cutline.
587
+ .UNINDENT
588
+ .INDENT 0.0
589
+ .TP
590
+ .B \-cl <layername>
591
+ Select the named layer from the cutline datasource.
592
+ .UNINDENT
593
+ .INDENT 0.0
594
+ .TP
595
+ .B \-cwhere <expression>
596
+ Restrict desired cutline features based on attribute query.
597
+ .UNINDENT
598
+ .INDENT 0.0
599
+ .TP
600
+ .B \-csql <query>
601
+ Select cutline features using an SQL query instead of from a layer with \fI\%\-cl\fP\&.
602
+ .UNINDENT
603
+ .INDENT 0.0
604
+ .TP
605
+ .B \-cblend <distance>
606
+ Set a blend distance to use to blend over cutlines (in pixels).
607
+ .UNINDENT
608
+ .INDENT 0.0
609
+ .TP
610
+ .B \-crop_to_cutline
611
+ Crop the extent of the target dataset to the extent of the cutline.
612
+ .UNINDENT
613
+ .INDENT 0.0
614
+ .TP
615
+ .B \-overwrite
616
+ Overwrite the target dataset if it already exists. Overwriting must be understood
617
+ here as deleting and recreating the file from scratch. Note that if this option
618
+ is \fInot\fP specified and the output file already exists, it will be updated in
619
+ place.
620
+ .UNINDENT
621
+ .INDENT 0.0
622
+ .TP
623
+ .B \-nomd
624
+ Do not copy metadata. Without this option, dataset and band metadata
625
+ (as well as some band information) will be copied from the first source dataset.
626
+ Items that differ between source datasets will be set to * (see \fI\%\-cvmd\fP option).
627
+ .UNINDENT
628
+ .INDENT 0.0
629
+ .TP
630
+ .B \-cvmd <meta_conflict_value>
631
+ Value to set metadata items that conflict between source datasets
632
+ (default is \(dq*\(dq). Use \(dq\(dq to remove conflicting items.
633
+ .UNINDENT
634
+ .INDENT 0.0
635
+ .TP
636
+ .B \-setci
637
+ Set the color interpretation of the bands of the target dataset from
638
+ the source dataset.
639
+ .UNINDENT
640
+ .INDENT 0.0
641
+ .TP
642
+ .B \-oo <NAME>=<VALUE>
643
+ Dataset open option (format specific)
644
+ .UNINDENT
645
+ .INDENT 0.0
646
+ .TP
647
+ .B \-doo <NAME>=<VALUE>
648
+ Output dataset open option (format specific)
649
+ .UNINDENT
650
+ .INDENT 0.0
651
+ .TP
652
+ .B <src_dataset_name>
653
+ The source file name(s).
654
+ .UNINDENT
655
+ .INDENT 0.0
656
+ .TP
657
+ .B <dst_dataset_name>
658
+ The destination file name.
659
+ .UNINDENT
660
+ .SH OVERVIEW
661
+ .sp
662
+ \fBgdalwarp\fP transforms images between different coordinate reference
663
+ systems and spatial resolutions.
664
+ .sp
665
+ First, \fBgdalwarp\fP must determine the extent and resolution of the
666
+ output, if these have not been specified using \fI\%\-te\fP and \fI\%\-tr\fP\&.
667
+ These are determined by transforming a sample of points from the source CRS to
668
+ the destination CRS. Details of the procedure can be found in the documentation
669
+ for \fI\%GDALSuggestedWarpOutput()\fP\&. If multiple inputs are provided to
670
+ \fBgdalwarp\fP, the output extent will be calculated to cover all of them,
671
+ at a resolution consistent with the highest\-resolution input.
672
+ .sp
673
+ Once the dimensions of the output image have been determined,
674
+ \fBgdalwarp\fP divides the output image into chunks that can be processed
675
+ independently within the amount of memory specified by \fI\%\-wm\fP\&.
676
+ \fBgdalwarp\fP then iterates over scanlines in these chunks, and for each
677
+ output pixel determines a rectangular region of source pixels that contribute
678
+ to the value of the output pixel. The dimensions of this rectangular region
679
+ are typically determined by estimating the relative scales of the source and
680
+ destination raster, but can be manually specified (see documentation of the
681
+ \fBXSCALE\fP parameter in \fI\%GDALWarpOptions::papszWarpOptions\fP).
682
+ Because the source region is a simple rectangle, it is not possible for an
683
+ output pixel to be associated with source pixels from both sides of the
684
+ antimeridian or pole (when transforming from geographic coordinates).
685
+ .sp
686
+ The rectangular region of source pixels is then provided to a function that
687
+ performs the resampling algorithm selected with \fI\%\-r\fP\&. Depending on the
688
+ resampling algorithm and relative scales of the source and destination rasters,
689
+ source pixels may be weighted either according to the approximate fraction of
690
+ the source pixel that is covered by the destination pixel (e.g., \(dqmean\(dq and
691
+ \(dqsum\(dq resampling), or by horizontal and vertical Cartesian distances between
692
+ the center of the source pixel and the center of the target pixel (e.g.,
693
+ bilinear or cubic spline resampling). In the latter case, the relative weight
694
+ of an individual source pixel is determined by the product of the weights
695
+ determined for its row and column; the diagonal Cartesian distance is not
696
+ calculated.
697
+ .SH MULTIPLE INPUT FILES
698
+ .sp
699
+ When multiple inputs are provided to \fBgdalwarp\fP, they are processed
700
+ independently in the order they are listed. This may introduce edge effects
701
+ near the boundaries of the input files, because output pixel values will be
702
+ derived from the final input only. To avoid this, non\-overlapping input
703
+ files may first be combined into a \fI\%VRT file\fP (e.g., using
704
+ \fI\%gdalbuildvrt\fP). This will allow \fBgdalwarp\fP to use pixels
705
+ from all inputs when calculating output pixel values.
706
+ .SH WRITING TO AN EXISTING FILE
707
+ .sp
708
+ Mosaicing into an existing output file is supported if the output file already
709
+ exists. The spatial extent of the existing file will not be modified to
710
+ accommodate new data, so you may have to remove it in that case, or use the
711
+ \fI\%\-overwrite\fP option.
712
+ .sp
713
+ Polygon cutlines may be used as a mask to restrict the area of the destination
714
+ file that may be updated, including blending. If the OGR layer containing the
715
+ cutline features has no explicit SRS, the cutline features are assumed to be in
716
+ the SRS of the destination file. When writing to a not yet existing target
717
+ dataset, its extent will be the one of the original raster unless \fI\%\-te\fP
718
+ or \fI\%\-crop_to_cutline\fP are specified.
719
+ .SH NODATA / SOURCE VALIDITY MASK HANDLING
720
+ .sp
721
+ Invalid values in source pixels, either identified through a nodata value
722
+ metadata set on the source band, a mask band, an alpha band or the use of
723
+ \fI\%\-srcnodata\fP will not be used in interpolation.
724
+ The details of how it is taken into account depends on the resampling kernel:
725
+ .INDENT 0.0
726
+ .IP \(bu 2
727
+ for nearest resampling, for each target pixel, the coordinate of its center
728
+ is projected back to source coordinates and the source pixel containing that
729
+ coordinate is identified. If this source pixel is invalid, the target pixel
730
+ is considered as nodata.
731
+ .IP \(bu 2
732
+ for bilinear, cubic, cubicspline and lanczos, for each target pixel, the
733
+ coordinate of its center is projected back to source coordinates and a
734
+ corresponding source pixel is identified. If this source pixel is invalid, the
735
+ target pixel is considered as nodata (in this case, valid pixels within the
736
+ kernel radius would not be considered).
737
+ Given that those resampling kernels have a non\-null kernel radius, this source
738
+ pixel is just one among other several source pixels, and it might be possible
739
+ that there are invalid values in those other contributing source pixels.
740
+ The weights used to take into account those invalid values will be set to zero
741
+ to ignore them.
742
+ .IP \(bu 2
743
+ for the other resampling methods, source pixels contributing to the target pixel
744
+ are ignored if invalid. Only the valid ones are taken into account. If there are
745
+ none, the target pixel is considered as nodata.
746
+ .UNINDENT
747
+ .sp
748
+ If using \fI\%\-srcnodata\fP for multiple images with different invalid
749
+ values, you need to either (a) pre\-process them to have the same to\-be\-ignored
750
+ value, or (b) set the nodata flag for each file. Use (b) if you need to preserve
751
+ the original values for some reason, for example:
752
+ .INDENT 0.0
753
+ .INDENT 3.5
754
+ .sp
755
+ .EX
756
+ # for this image we want to ignore black (0)
757
+ gdalwarp \-srcnodata 0 \-dstnodata 0 orig\-ignore\-black.tif black\-nodata.tif
758
+
759
+ # and now we want to ignore white (0)
760
+ gdalwarp \-srcnodata 255 \-dstnodata 255 orig\-ignore\-white.tif white\-nodata.tif
761
+
762
+ # and finally ignore a particular blue\-grey (RGB 125 125 150)
763
+ gdalwarp \-srcnodata \(dq125 125 150\(dq \-dstnodata \(dq125 125 150\(dq orig\-ignore\-grey.tif grey\-nodata.tif
764
+
765
+ # now we can mosaic them all and not worry about nodata parameters
766
+ gdalwarp black\-nodata.tif grey\-nodata.tif white\-nodata.tif final\-mosaic.tif
767
+ .EE
768
+ .UNINDENT
769
+ .UNINDENT
770
+ .SH APPROXIMATE TRANSFORMATION
771
+ .sp
772
+ By default \fBgdalwarp\fP uses a linear approximator for the
773
+ transformations with a permitted error of 0.125 pixels in the source dataset.
774
+ For each processing chunk, the approximator precisely transforms three points
775
+ per output scanline (the start, middle, and end) from a row and column in the
776
+ output dataset to a row and column in the source dataset.
777
+ It then compares a linear approximation of the center point coordinates to the
778
+ precisely transformed value.
779
+ If the sum of the horizontal and vertical errors is less than the error
780
+ threshold then the remaining source points are approximated using linear
781
+ interpolation between the start and middle point, and between the middle and
782
+ end point.
783
+ If the error exceeds the threshold, the scanline is split into two sections and
784
+ the approximator is recursively applied to each section until the error is less
785
+ than the threshold or all points have been exactly computed.
786
+ .sp
787
+ Note that a processing chunk does not necessarily correspond to a whole destination
788
+ scanline. If the output dataset is tiled, its shape will typically be one or
789
+ several tiles. The \fBOPTIMIZE_SIZE\fP warping option and the value of the \fI\%\-wm\fP
790
+ option can also influence the shape of the processing chunk. Consequently, for
791
+ a single (non\-zero) value of the error threshold,
792
+ the linear approximation might result in slightly different values in coordinate
793
+ transformation, but all of them within the permitted error.
794
+ .sp
795
+ The error threshold (in source dataset pixels) can be controlled with the gdalwarp
796
+ \fI\%\-et\fP switch. If you want to compare a true pixel\-by\-pixel reprojection
797
+ use \fI\%\-et 0\fP which disables this approximator entirely.
798
+ .SH VERTICAL TRANSFORMATION
799
+ .sp
800
+ While gdalwarp is most commonly used to perform coordinate transformations in the 2D
801
+ space, it can also perform vertical transformations. Vertical transformations are
802
+ automatically performed when the following two conditions are met:
803
+ .INDENT 0.0
804
+ .IP \(bu 2
805
+ at least one of the source or target CRS has an explicit vertical CRS
806
+ (as part of a compound CRS) or is a 3D (generally geographic) CRS, and
807
+ .IP \(bu 2
808
+ the raster has a single band
809
+ .UNINDENT
810
+ .sp
811
+ This mode can also be forced by using the \fI\%\-vshift\fP (this is
812
+ essentially useful when the CRS involved are not explicitly 3D, but a
813
+ transformation pipeline is specified with \fI\%\-ct\fP), or disabled with
814
+ \fI\%\-novshift\fP\&.
815
+ .sp
816
+ When a vertical transformation is involved, typically a shift value read in a
817
+ geoid grid will be applied. This may require such grid(s) to be installed, or
818
+ PROJ networking capabilities to be enabled. Consult \X'tty: link https://proj.org'\fI\%PROJ\fP\X'tty: link'
819
+ documentation for more details. In addition to a shift, the raster values may
820
+ be multiplied by a factor to take into account vertical unit changes.
821
+ In priority, the value returned by \fI\%GDALRasterBand::GetUnitType()\fP is
822
+ used. The following values are currently recognized: \fBm\fP, \fBmetre\fP, \fBmetre\fP,
823
+ \fBft\fP, \fBfoot\fP, \fBUS survey foot\fP\&. If there is no defined unit type at the
824
+ band level, the vertical unit of the source CRS is used. The vertical unit of
825
+ the target CRS is also used to determine that conversion factor. The conversion
826
+ factor may be overridden by setting the \fBMULT_FACTOR_VERTICAL_SHIFT\fP warping
827
+ option with \fI\%\-wo\fP\&. For example \fB\-wo MULT_FACTOR_VERTICAL_SHIFT=1\fP to
828
+ disable any vertical unit change.
829
+ .SH MEMORY USAGE
830
+ .sp
831
+ Adding RAM will almost certainly increase the speed of \fBgdalwarp\fP\&.
832
+ That\(aqs not at all the same as saying that it is worth it, or that the speed
833
+ increase will be significant. Disks are the slowest part of the process. By
834
+ default \fBgdalwarp\fP won\(aqt take much advantage of RAM. Using the flag
835
+ \fI\%\-wm 500\fP will operate on 500MB chunks at a time which is better than
836
+ the default. The warp memory specified by \fI\%\-wm\fP is shared among all
837
+ threads, so it is especially beneficial to increase this value when running
838
+ \fBgdalwarp\fP with \fI\%\-wo NUM_THREADS\fP (or its equivalent
839
+ \fI\%GDAL_NUM_THREADS\fP) greater than 1.
840
+ .sp
841
+ Increasing the I/O block cache size may also help. This can be done by
842
+ setting the \fI\%GDAL_CACHEMAX\fP configuration like:
843
+ .INDENT 0.0
844
+ .INDENT 3.5
845
+ .sp
846
+ .EX
847
+ gdalwarp \-\-config GDAL_CACHEMAX 500 \-wm 500 ...
848
+ .EE
849
+ .UNINDENT
850
+ .UNINDENT
851
+ .sp
852
+ This uses 500MB of RAM for read/write caching, and 500MB of RAM for working
853
+ buffers during the warp. Beyond that it is doubtful more memory will make a
854
+ substantial difference.
855
+ .sp
856
+ Check CPU usage while \fBgdalwarp\fP is running. If it is substantially
857
+ less than 100% then you know things are IO bound. Otherwise they are CPU bound.
858
+ The \fB\-\-debug\fP option may also provide useful information. For instance, after
859
+ running the following:
860
+ .INDENT 0.0
861
+ .INDENT 3.5
862
+ .sp
863
+ .EX
864
+ gdalwarp \-\-debug on abc.tif def.tif
865
+ .EE
866
+ .UNINDENT
867
+ .UNINDENT
868
+ .sp
869
+ a message like the following will be output:
870
+ .INDENT 0.0
871
+ .INDENT 3.5
872
+ .sp
873
+ .EX
874
+ GDAL: 224 block reads on 32 block band 1 of utm.tif
875
+ .EE
876
+ .UNINDENT
877
+ .UNINDENT
878
+ .sp
879
+ In this case it is saying that band 1 of \fButm.tif\fP has 32 blocks, but
880
+ that 224 block reads were done, implying that lots of data was having to be
881
+ re\-read, presumably because of a limited IO cache. You will also see messages
882
+ like:
883
+ .INDENT 0.0
884
+ .INDENT 3.5
885
+ .sp
886
+ .EX
887
+ GDAL: GDALWarpKernel()::GWKNearestNoMasksByte()
888
+ Src=0,0,512x512 Dst=0,0,512x512
889
+ .EE
890
+ .UNINDENT
891
+ .UNINDENT
892
+ .sp
893
+ The Src/Dst windows show you the \(dqchunk size\(dq being used. In this case my whole
894
+ image which is very small. If you find things are being broken into a lot of
895
+ chunks increasing \fI\%\-wm\fP may help somewhat.
896
+ .sp
897
+ But far more important than memory are ensuring you are going through an
898
+ optimized path in the warper. If you ever see it reporting
899
+ \fBGDALWarpKernel()::GWKGeneralCase()\fP you know things will be relatively slow.
900
+ Basically, the fastest situations are nearest neighbour resampling on 8bit data
901
+ without nodata or alpha masking in effect.
902
+ .SH COMPRESSED OUTPUT
903
+ .sp
904
+ In some cases, the output of \fBgdalwarp\fP may be much larger than the
905
+ original, even if the same compression algorithm is used. By default,
906
+ \fBgdalwarp\fP operates on chunks that are not necessarily aligned with
907
+ the boundaries of the blocks/tiles/strips of the output format, so this might
908
+ cause repeated compression/decompression of partial blocks, leading to lost
909
+ space in the output format.
910
+ .sp
911
+ The situation can be improved by using the \fBOPTIMIZE_SIZE\fP warping option
912
+ (\fI\%\-wo OPTIMIZE_SIZE=YES\fP), but note that depending on the source and
913
+ target projections, it might also significantly slow down the warping process.
914
+ .sp
915
+ Another possibility is to use \fBgdalwarp\fP without compression and then
916
+ follow up with \fBgdal_translate\fP with compression:
917
+ .INDENT 0.0
918
+ .INDENT 3.5
919
+ .sp
920
+ .EX
921
+ gdalwarp infile tempfile.tif ...options...
922
+ gdal_translate tempfile.tif outfile.tif \-co compress=lzw ...etc.
923
+ .EE
924
+ .UNINDENT
925
+ .UNINDENT
926
+ .sp
927
+ Alternatively, you can use a VRT file as the output format of \fBgdalwarp\fP\&. The
928
+ VRT file is just an XML file that will be created immediately. The
929
+ \fBgdal_translate\fP operations will be of course a bit slower as it will do the
930
+ real warping operation.
931
+ .INDENT 0.0
932
+ .INDENT 3.5
933
+ .sp
934
+ .EX
935
+ gdalwarp \-of VRT infile tempfile.vrt ...options...
936
+ gdal_translate tempfile.vrt outfile.tif \-co compress=lzw ...etc.
937
+ .EE
938
+ .UNINDENT
939
+ .UNINDENT
940
+ .SH FREQUENTLY ASKED QUESTIONS
941
+ .sp
942
+ Q1. Why does the quality of the output looks so bad (no anti\-aliasing)?
943
+ .sp
944
+ Did you specify a resampling method, with \fI\%\-r\fP, other than the
945
+ default nearest neighbour?
946
+ .sp
947
+ Q2. Why do I get slightly different results whether the output dataset is tiled or not?
948
+ .sp
949
+ This is related to the fact that an approximate coordinate transformation is
950
+ used by default to speed\-up computation. If you want to get the same results
951
+ whether the output is tiled or not, set \fI\%\-et\fP to zero.
952
+ Note, however, that this will only work for relatively small images; other factors
953
+ can still result in different result. See following question (Q3).
954
+ .sp
955
+ Q3. Why do I observe artifacts, that look like resolution changes and are aligned
956
+ with rectangular areas of the output raster, when warping sufficiently large
957
+ rasters, particularly in areas where the reprojection involves significant
958
+ deformation and only with non\-nearest resampling ?
959
+ .sp
960
+ The warping engine operates on rectangular areas of the output
961
+ dataset (generally aligned with tile boundaries for a compressed tile dataset).
962
+ .sp
963
+ During reprojection, a single source pixel does not generally correspond to a
964
+ single output pixel. The resampling method must therefore properly account for this
965
+ and compute a ratio between the number of source and target pixels in the
966
+ horizontal (X) and vertical (Y) directions. These ratios are computed per warping
967
+ chunk. This maximizes the local quality of the warping but has the downside of
968
+ creating visual discontinuities between warping chunks.
969
+ .sp
970
+ If you favor a seamless result, you may manually specify the
971
+ XSCALE and YSCALE warping options with \fI\%\-wo\fP\&.
972
+ The XSCALE (resp. YSCALE) value is the ratio expressing the resampling factor,
973
+ i.e. the number of destination pixels per source pixel, along the
974
+ horizontal (resp. vertical) axis. It equals to one for no resampling, is
975
+ below one for downsampling, and above one for upsampling.
976
+ .SH EXAMPLES
977
+ .INDENT 0.0
978
+ .IP \(bu 2
979
+ Basic transformation:
980
+ .UNINDENT
981
+ .INDENT 0.0
982
+ .INDENT 3.5
983
+ .sp
984
+ .EX
985
+ gdalwarp \-t_srs EPSG:4326 input.tif output.tif
986
+ .EE
987
+ .UNINDENT
988
+ .UNINDENT
989
+ .INDENT 0.0
990
+ .IP \(bu 2
991
+ For instance, an eight bit spot scene stored in GeoTIFF with
992
+ control points mapping the corners to lat/long could be warped to a UTM
993
+ projection with a command like this:
994
+ .UNINDENT
995
+ .INDENT 0.0
996
+ .INDENT 3.5
997
+ .sp
998
+ .EX
999
+ gdalwarp \-t_srs \(aq+proj=utm +zone=11 +datum=WGS84\(aq \-overwrite raw_spot.tif utm11.tif
1000
+ .EE
1001
+ .UNINDENT
1002
+ .UNINDENT
1003
+ .INDENT 0.0
1004
+ .IP \(bu 2
1005
+ For instance, the second channel of an ASTER image stored in HDF with
1006
+ control points mapping the corners to lat/long could be warped to a UTM
1007
+ projection with a command like this:
1008
+ .UNINDENT
1009
+ .INDENT 0.0
1010
+ .INDENT 3.5
1011
+ .sp
1012
+ .EX
1013
+ gdalwarp \-overwrite HDF4_SDS:ASTER_L1B:\(dqpg\-PR1B0000\-2002031402_100_001\(dq:2 \e
1014
+ pg\-PR1B0000\-2002031402_100_001_2.tif
1015
+ .EE
1016
+ .UNINDENT
1017
+ .UNINDENT
1018
+ .INDENT 0.0
1019
+ .IP \(bu 2
1020
+ To apply a cutline on a un\-georeferenced image and clip from pixel (220,60) to pixel (1160,690):
1021
+ .UNINDENT
1022
+ .INDENT 0.0
1023
+ .INDENT 3.5
1024
+ .sp
1025
+ .EX
1026
+ gdalwarp \-overwrite \-to SRC_METHOD=NO_GEOTRANSFORM \-to DST_METHOD=NO_GEOTRANSFORM \e
1027
+ \-te 220 60 1160 690 \-cutline cutline.csv in.png out.tif
1028
+ .EE
1029
+ .UNINDENT
1030
+ .UNINDENT
1031
+ .sp
1032
+ where cutline.csv content is like:
1033
+ .INDENT 0.0
1034
+ .INDENT 3.5
1035
+ .sp
1036
+ .EX
1037
+ id,WKT
1038
+ 1,\(dqPOLYGON((....))\(dq
1039
+ .EE
1040
+ .UNINDENT
1041
+ .UNINDENT
1042
+ .INDENT 0.0
1043
+ .IP \(bu 2
1044
+ To transform a DEM from geoid elevations (using EGM96) to WGS84 ellipsoidal heights:
1045
+ .UNINDENT
1046
+ .INDENT 0.0
1047
+ .INDENT 3.5
1048
+ .sp
1049
+ .EX
1050
+ gdalwarp \-overwrite in_dem.tif out_dem.tif \-s_srs EPSG:4326+5773 \-t_srs EPSG:4979
1051
+ .EE
1052
+ .UNINDENT
1053
+ .UNINDENT
1054
+ .SH RETURN STATUS CODE
1055
+ .sp
1056
+ The program returns status code 0 in case of success, and non\-zero in case of
1057
+ error (non\-blocking errors emitted as warnings are considered as a successful
1058
+ execution).
1059
+ .SH C API
1060
+ .sp
1061
+ This utility is also callable from C with \fI\%GDALWarp()\fP\&.
1062
+ .SH AUTHOR
1063
+ Frank Warmerdam <warmerdam@pobox.com>, Silke Reimer <silke@intevation.de>
1064
+ .SH COPYRIGHT
1065
+ 1998-2026
1066
+ .\" Generated by docutils manpage writer.
1067
+ .