似乎在ogr2ogr中对流输入的支持很弱。例如,为什么我可以这样做:
curl "http://data.usgin.org/arizona/wfs?service=WFS&version=1.1.0&
request=GetFeature&typeName=azgs:activefaults&maxFeatures=10" |
ogr2ogr -f "KML" /vsistdout/ /vsistdin/
......但我不能这样做:
curl "http://data.usgin.org/arizona/wfs?service=WFS&version=1.1.0&
request=GetFeature&typeName=azgs:activefaults&maxFeatures=10&
outputformat=application/json" | ogr2ogr -f "KML" /vsistdout/ /vsistdin/
第一个请求使用“WFS”驱动程序作为源图层,第二个请求使用“GeoJSON”驱动程序作为源图层。第一个工作正常,但第二个给了我:
ERROR 1: GeoJSON parsing error: unexpected end of data (at offset 6000)
ERROR 4: Failed to read GeoJSON data
FAILURE:
Unable to open datasource `/vsistdin/' with the following drivers.
答案 0 :(得分:0)
您使用的是什么版本的GDAL?从gdal-2.2.0
开始,这似乎是固定的,因为这个命令似乎起作用:
$ ogr2ogr --version
GDAL 2.2.0, released 2017/04/28
$ curl "http://data.usgin.org/arizona/wfs?service=WFS&version=1.1.0&request=GetFeature&typeName=azgs:activefaults&maxFeatures=10&outputformat=application/json" | ogr2ogr -f "KML" /vsistdout/ /vsistdin/
答案 1 :(得分:0)
如果您对早期的gdal版本或其他格式有此问题,只需添加有关标准格式的信息,例如在stdin上。
curl "http://data.usgin.org/arizona/wfs?service=WFS&version=1.1.0&
request=GetFeature&typeName=azgs:activefaults&maxFeatures=10&
outputformat=application/json" | ogr2ogr -f "KML" /vsistdout/ GeoJSON:/vsistdin/