Answers:
您可以使用gdal命令行工具附带的ogr2ogr实用程序。使用以下选项:-sql
ogr2ogr outputfile.shp inputfile.shp -sql "SELECT oldfield1 AS newfield1, oldfield2 AS newfield2 from inputfile"
另外,您可以同时将数据转换为其他格式,或者通过指定where子句来过滤数据。请注意,如果您使用此方法,则需要指定所有输出字段(SELECT语句中未包括的所有字段将从输出文件中删除)。
-sql
标志进行另一种转换。
ogrinfo -so inputfile.shp inputfile