gdal ogr2ogr 在转换 kml 文件时产生空文件
gdal ogr2ogr produces empty files when converting kml files
我正在尝试在机器 运行 Mac OS 10.12
.
的终端上使用 gdal ogr2ogr
来隐藏一堆 .kml
文件
没有错误消息,但输出文件为空。 .kml
个文件是 google 个位置历史记录下载。
我使用的代码是:
ogr2ogr -f CSV output1.csv 5209.kml
同样幸运的是,我也尝试过其他格式。
ogr2ogr -f GeoJSON geojson.json 5209.kml
ogr2ogr -f "ESRI Shapefile" points.shp 5209.kml
这会起作用:
ogr2ogr -f GeoJSON --config GDAL_SKIP GML geojson.json 5209.kml
查看原因here
我正在尝试在机器 运行 Mac OS 10.12
.
gdal ogr2ogr
来隐藏一堆 .kml
文件
没有错误消息,但输出文件为空。 .kml
个文件是 google 个位置历史记录下载。
我使用的代码是:
ogr2ogr -f CSV output1.csv 5209.kml
同样幸运的是,我也尝试过其他格式。
ogr2ogr -f GeoJSON geojson.json 5209.kml
ogr2ogr -f "ESRI Shapefile" points.shp 5209.kml
这会起作用:
ogr2ogr -f GeoJSON --config GDAL_SKIP GML geojson.json 5209.kml
查看原因here