# GDAL_GeoTool **Repository Path**: opengms/GDAL_GeoTool ## Basic Information - **Project Name**: GDAL_GeoTool - **Description**: 借助GDAL开源库,实现缓冲区、求交、求并、泰森多边形等功能。 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 2 - **Created**: 2017-12-08 - **Last Updated**: 2024-07-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## GDAL_GeoTool ### Description 借助GDAL开源库,实现缓冲区、求交、求并、泰森多边形等功能。 ### Feature #### How to use use win cmd ``` //! Get Help GDAL_GeoTool -h //! Call geography analysis method GDAL_GeoTool -m [method name] -p [param1,param2...] ``` Detail cmd ``` -m buffer -p [Input] [DistancePath] [Output] -m delaunay -p [Input] [dfTolerancePath] [bOnlyEdgesPath] [output] -m diff -p [Input1] [Input2] [output] -m symdiff -p [Input1] [Input2] [output] -m intersect -p [Input1] [Input2] [output] -m union -p [Input1] [Input2] [output] -m projection -p [Input][output] (just to EPSG:4326) -m vonoroi -p [Input][output] (Input must be point) -m idw -p [PointShpPath] [FieldFilePath] [outputPath] -m colormapping -p [InputRasterPath] [ColorBandFilePath] [OutputImagePath] -m geojson2shp -p [GeojsonPath] [ShpPath] [ProjWktPath] (optional) ```