postgis的shp2pgsql使用

先来段python代码:


import os
from cStringIO import StringIO

from proj import db_oper

shape_base_dir = r'C:\Users\user_aaa\Desktop\compress\\'
des_file_dir = 'D:\shp_sql\\'

gis_frame = '4326'
gis_char = 'CP874'
shp_file = ''



file_name_dic = {}
for files in os.walk(shape_base_dir):
 #os.walk返回一个元组:files[0]——根目录
 #files[1]——根目录包含的次级目录
 #files[2]——包含的文件
 file_name_set = {}
 if len(files[2]) > 0:
 #print files[0].split('\\')
     print files[2]
     for file_p in files[2]:
         file_name_set[file_p[0:-4]] = ''
     for file_p in file_name_set.keys():
         if file_p in file_name_dic.keys():
             #-a  追加 -c 新建
             #-D  dump方式,处理大数据
             #-s  坐标
             #-w  字符集
             shp_file = '"'+files[0]+'"'+'\\'+file_p
             le_dir+'"'+files[0].split('\\')[-1]+file_p+'"'+'.sql')
         else :
             file_name_dic[file_p] = ''
             shp_file = '"'+files[0]+'"'+'\\'+file_p
             os.system('shp2pgsql -c -D -s '+gis_frame+' -W '+gis_char+' '+shp_file+' org_'+file_p+' >'+des_file_dir+'"'+files[0].split('\\')[-1]+file_p+'"'+'.sql')

 
 
 
 

  
  

再来postgis文档中,对shp2pgsql的解释:

(c|a|d|p) These are mutually exclusive options:
    -c Creates a new table and populates it from the shapefile. This is the default mode.
    -a Appends data from the Shape file into the database table. Note that to use this option to load multiple files, the files must have the same attributes and same data types.
    -d Drops the database table before creating a new table with the data in the Shape file.
    -p Only produces the table creation SQL code, without adding any actual data. This can be used if you need to completely separate the table creation and data loading steps.
-? Display help screen.
-D Use the PostgreSQL "dump" format for the output data. This can be combined with -a, -c and -d. It is much faster to load
than the default "insert" SQL format. Use this for very large data sets.
-s <SRID> Creates and populates the geometry tables with the specified SRID.
-k Keep identifiers’ case (column, schema and attributes). Note that attributes in Shapefile are all UPPERCASE.
-i Coerce all integers to standard 32-bit integers, do not create 64-bit bigints, even if the DBF header signature appears to warrant
it.
-I Create a GiST index on the geometry column.
-w Output WKT format, for use with older (0.x) versions of PostGIS. Note that this will introduce coordinate drifts and will
drop M values from shapefiles.
-W <encoding> Specify encoding of the input data (dbf file). When used, all attributes of the dbf are converted from the
specified encoding to UTF8. The resulting SQL output will contain a SET CLIENT_ENCODING to UTF8 command,
so that the backend will be able to reconvert from UTF8 to whatever encoding the database is configured to use internally.
-N <policy> NULL geometries handling policy (insert*,skip,abort)
-n -n Only import DBF file. If your data has no corresponding shapefile, it will automatically switch to this mode and load just
the dbf. So setting this flag is only needed if you have a full shapefile set, and you only want the attribute data and no
geometry.
-G Use geography type instead of geometry (requires lon/lat data) in WGS84 long lat (SRID=4326)





转载于:https://my.oschina.net/weiwubunengxiao/blog/181687

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值