PostGIS导入导出SHP文件常用命令

SHP导入POSTGIS数据库

引用

直接导入数据库 shp2pgsql  -I -s 2437 -W GBK shop_point.shp public.ntable | psql -U postgres -w -d jwsz 导出sql再导入数据库 shp2pgsql -s "2437" -W "GBK" -I D:\shop_point.shp newTable > D:\shop_point.sql psql -U postgres -f D:/shop_point.sql jwsz -P 123456

POSTGIS数据库导出SHP:生成shp数据 //windows导出乱码解决办法:在环境变量中设置 PGCLIENTENCODING=GBK或PGCLIENTENCODING=GB18030,然后执行pgsql2shp,导出的shape文件中,属性数据编码正确是GBK的,没有显示乱码。

引用

pgsql2shp -f shop_point -h localhost -u postgres -P 123456 jwsz public.shop_point pgsql2shp -g the_geom -f D:\shp.shp -u postgres -P 123456 -h 127.0.0.1 jwsz "select the_geom,name from shop_point" pgsql2shp -f shop_point -h localhost -u postgres -P 123456 jwsz "select the_geom,name from shop_point"

引用

@echo -d 删除现有的表,并重新创建进行插入  @echo -a 向现有的表中插入,表必须存在  @echo -c 创建表并进行插入  @echo -p 只进行表的创建
shp2pgsql -s 4326 -W GBK CheckWell_point.shp public.CheckWell_point>CheckWell_point.sql
shp2pgsql -s 4326 -W GBK CheckWell_point.shp public.CheckWell_point psql -U postgres -w -d jwsz
@echo 导入  shp2pgsql -s 4326 -a -W GBK CheckWell_point.shp public.CheckWell_point>CheckWell_point.sql psql -U postgres -w -d jwsz -f CheckWell_point.sql -e  @echo 导出  pgsql2shp.exe -f CheckWell_point -P 123456 -u postgres jwsz public.CheckWell_point
@echo 删除并更新  点数据 shp2pgsql -s 4326 -d -W GBK CheckWell_point.shp public.CheckWell_point|psql -U postgres -w -d jwsz @echo 尝试创建  线数据 shp2pgsql -s 4326 -p -W GBK CableLine_polyline.shp public.CableLine_polyline|psql -U postgres -w -d jwsz @echo 数据追加  线数据 shp2pgsql -s 4326 -a -W GBK CableLine_polyline.shp public.CableLine_polyline|psql -U postgres -w -d jwsz
@echo 尝试创建  面数据 shp2pgsql -s 4326 -p -W GBK Bridge_region.shp public.Bridge_region|psql -U postgres -w -d jwsz @echo 数据追加  面数据 shp2pgsql -s 4326 -a -W GBK Bridge_region.shp public.Bridge_region|psql -U postgres -w -d jwsz pause

shp2pgsql命令相关参数

引用

RCSID: $Id: shp2pgsql-core.h 5983 2010-09-19 11:27:05Z mcayland $ RELEASE: 1.5 USE_GEOS=1 USE_PROJ=1 USE_STATS=1 USAGE: shp2pgsql [<options>] <shapefile> [<schema>.]<table> OPTIONS:   -s <srid>  Set the SRID field. Defaults to -1.   (-d|a|c|p) These are mutually exclusive options:       -d  Drops the table, then recreates it and populates           it with current shape file data.       -a  Appends shape file into current table, must be           exactly the same table schema.       -c  Creates a new table and populates it, this is the           default if you do not specify any options.       -p  Prepare mode, only creates the table.   -g <geocolumn> Specify the name of the geometry/geography column      (mostly useful in append mode).   -D  Use postgresql dump format (defaults to SQL insert statments.   -G  Use geography type (requires lon/lat data).   -k  Keep postgresql identifiers case.   -i  Use int4 type for all integer dbf fields.   -I  Create a spatial index on the geocolumn.   -S  Generate simple geometries instead of MULTI geometries.   -W <encoding> Specify the character encoding of Shape‘s      attribute column. (default : "WINDOWS-1252")   -N <policy> NULL geometries handling policy (insert*,skip,abort)   -n  Only import DBF file.   -?  Display this help screen.

pgsql2shp命令相关参数

引用

RCSID: $Id: pgsql2shp.c 5451 2010-03-22 19:38:40Z pramsey $ RELEASE: 1.5 USE_GEOS=1 USE_PROJ=1 USE_STATS=1 USAGE: pgsql2shp [<options>] <database> [<schema>.]<table>        pgsql2shp [<options>] <database> <query>
OPTIONS:   -f <filename>  Use this option to specify the name of the file      to create.   -h <host>  Allows you to specify connection to a database on a      machine other than the default.   -p <port>  Allows you to specify a database port other than the default.   -P <password>  Connect to the database with the specified password.   -u <user>  Connect to the database as the specified user.   -g <geometry_column> Specify the geometry column to be exported.   -b Use a binary cursor.   -r Raw mode. Do not assume table has been created by       the loader. This would not unescape attribute names      and will not skip the ‘gid‘ attribute.   -k Keep postgresql identifiers case.   -? Display this help screen.

PostGIS导入导出SHP文件常用命令

时间: 2024-10-25 20:50:43

PostGIS导入导出SHP文件常用命令的相关文章

PostGIS导入导出shp的注意事项

1.postgresql 数据库的表明使用小写,表名不能使用大写,否则会识别不了. 2.数据导入之前需要给需要导入的数据库增加空间扩展功能. 3.使用 postgis shapfile and db loader 插件时,选择的SHP文件路径不能有中文,路径不能太复杂.否则出现 dbf file (.dbf) can not be opened.的错误. 4.导入默认的编码是UTF-8,需要修改为GBK,否则会报错. 5.按照以上步骤,基本能够导入成功. 6.导入成功的SHP文件名会自动变成小写

MySQL导入导出.sql文件及常用命令

MySQL导入导出.sql文件及常用命令 在MySQL Qurey   Brower中直接导入*.sql脚本,是不能一次执行多条sql命令的,在mysql中执行sql文件的命令: mysql> source   c:\\test.sql; 另附mysql常用命令: 一) 连接MYSQL: 格式: mysql -h主机地址 -u用户名 -p用户密码 1.例1:连接到本机上的MYSQL 首先在打开DOS窗口,然后进入mysql安装目录下的bin目录下,例如: D:/mysql/bin,再键入命令my

BCP是SQL Server中负责导入导出数据的一个命令行工具

BCP是SQL Server中负责导入导出数据的一个命令行工具,它是基于DB-Library的,并且能以并行的方式高效地导入导出大批量的数据.BCP可以将数据库的表或视图直接导出,也能通过SELECT FROM语句对表或视图进行过滤后导出.在导入导出数据时,可以使用默认值或是使用一个格式文件将文件中的数据导入到数据库或将数据库中的数据导出到文件中. 下面将详细讨论如何利用BCP导入导出数据. 1. BCP的主要参数介绍 BCP共有四个动作可以选择. (1) 导入. 这个动作使用in命令完成,后面

php 导入/导出 csv 文件

php 导入/导出 csv 文件 1.简介 项目开发中,很多时候要将外部CSV文件导入到数据库中或者将数据导出为CSV文件,那么具体该如何实现呢?本文将使用原生PHP,实现了CSV格式数据的导入和导出功能.并解决相关乱码问题. 将xls转换成csv的文本格式,然后再用php分析这个文件,和PHP分析文本没有什么区别.优点:跨平台,效率比较高.可以读写.缺点:只能直接使用csv的文件,如果经常接受.xls二进制文件的话需要手工转换,不能自动化.一个文件只有一个SHEET. 2.相关函数介绍 2.1

(C#)利用Aspose.Cells组件导入导出excel文件

Aspose.Cells组件可以不依赖excel来导入导出excel文件: 导入: [csharp] view plain copy print? public static System.Data.DataTable ReadExcel(String strFileName) { Workbook book = new Workbook(); book.Open(strFileName); Worksheet sheet = book.Worksheets[0]; Cells cells = 

【转】 (C#)利用Aspose.Cells组件导入导出excel文件

Aspose.Cells组件可以不依赖excel来导入导出excel文件: 导入: public static System.Data.DataTable ReadExcel(String strFileName) { Workbook book = new Workbook(); book.Open(strFileName); Worksheet sheet = book.Worksheets[0]; Cells cells = sheet.Cells; return cells.Export

命令行模式下 MYSQL导入导出.sql文件的方法

一.MYSQL的命令行模式的设置:桌面->我的电脑->属性->环境变量->新建->PATH=“:path\mysql\bin;”其中path为MYSQL的安装路径.二.简单的介绍一下命令行进入MYSQL的方法:1.C:\>mysql -h hostname -u username -p  .C:\>mysql -h localhost -u root-p按ENTER键,等待然后输入密码.这里hostname为服务器的名称,如localhost,username为M

Windows下使用mysqldump命令导入/导出.sql文件

1.mysqldump.exe在MySql的安装目录的bin目录下 如图: 2.使用Windwos命令进入MySql安装目录的bin目录下. 如图: 3.使用mysqldump命令导出.sql文件 (1)导出整个数据库的数据 mysqldump -u 用户名 -p 数据库名称>存放位置+导出的文件名称 (2)导出某个表的数据 mysqldump -u 用户名 -p 数据库名称 表名>存放位置+导出的文件名称 (3)导出某个表的结构 mysqldump -d -u 用户名 -p 数据库名称 表名

Oracle 数据库导入导出 dmp文件

首先询问对方数据库的表空间名称和大小,然后在你的oracle中建立相应表空间,最后使用命令导入.导出数据.补充:1.要新建一个数据库: Oracle数据导入导出imp/exp就相当于oracle数据还原与备份.exp命令可 以把数据从远程数据库服务器导出到本地的dmp文件,imp命令可以把dmp文件从本 地导入到远处的数据库服务器中. 利用这个功能可以构建两个相同的数据库,一 个用来测试,一个用来正式使用.例如:imp命令导入数据:imp username/[email protected]SI