postgis 导出 栅格_postgis常见的空间数据的导入导出

本片文章简单记录了postgis涉及的常用数据导入导出的使用方法。

1.将osm数据导入postgis

osm2pgsql -c -d osm -l -E 4326 -S /usr/share/osm2pgsql/default.style xxxxx.osm

这里要注意几个参数,是选用-c还是-a要看你的应用方式,-S这个是在ubuntu下路径不同时使用,espg可以不用再使用900913了。自然要使得数据库采用UTF8编码最好。

osm2pgsql SVN version 0.70.5

Usage:

osm2pgsql [options] planet.osm

osm2pgsql [options] planet.osm.{gz,bz2}

osm2pgsql [options] file1.osm file2.osm file3.osm

This will import the data from the OSM file(s) into a Postgresql database

suitable for use by the Mapnik renderer

Options:

-a|--appendAdd the OSM file into the database without removing

existing data.

-b|--bBoxApply a bounding Box filter on the imported data

Must be specified as: minlon,minlat,maxlon,maxlat

e.g. --bBox -0.5,51.25,0.5,51.75

-c|--createRemove existing data from the database. This is the

default if --append is not specified.

-d|--databaseThe name of the Postgresql database to connect

to (default: gis).

-i|--tablespace-indexThe name of the Postgresql tablespace where indexes will be create

to (default: pg_default).

-l|--latlongStore data in degrees of latitude & longitude.

-m|--mercStore data in proper spherical mercator (default)

-M|--oldmercStore data in the legacy OSM mercator format

-E|--proj numUse projection EPSG:num

-u|--utf8-sanitizeRepair bad UTF8 input data (present in planet

dumps prior to August 2007). Adds about 10% overhead.

-p|--prefixPrefix for table names (default planet_osm)

-s|--slimStore temporary data in the database. This greatly

reduces the RAM usage but is much slower.

-S|--styleLocation of the style file. Defaults to /usr/share/default.style

-C|--cacheOnly for slim mode: Use upto this many MB for caching nodes

Default is 800

-U|--usernamePostgresql user name.

-W|--passwordForce password prompt.

-H|--hostDatabase server hostname or socket location.

-P|--portDatabase server port.

-e|--expire-tiles [min_zoom-]max_zoomCreate a tile expiry list.

-o|--expire-output filenameOutput filename for expired tiles list.

-r|--input-readerInput frontend.

libxml2 - Parse XML using libxml2. (default)

primitive - Primitive XML parsing.

-O|--outputOutput backend.

pgsql - Output to a PostGIS database. (default)

gazetteer - Output to a PostGIS database suitable for gazetteer

null - No output. Useful for testing.

-x|--extra-attributes

Include attributes for each object in the database.

This includes the username,userid,timestamp and version.

Note: this option also requires additional entries in your style file.

-k|--hstoreGenerate an additional hstore (key/value) column to postgresql tables

-z|--hstore-columnGenerate an additional hstore (key/value) column to containing all tags

that start with the specified string,eg --hstore-column "name:" will

produce an extra hstore column that contains all name:xx tags

-G|--multi-geometryGenerate multi-geometry features in postgresql tables.

-K|--keep-coastlinesKeep coastline data rather than filtering it out.

By default natural=coastline tagged data will be discarded based on the

assumption that post-processed Coastline Checker shapefiles will be used.

-h|--helpHelp information.

-v|--verboseVerbose output.

Add -v to display supported projections.

Use -E to access any espg projections (usually in /usr/share/proj/epsg)

2.postgis导出到shap

虽说有udig可以导出成shap,但是遇到中文乱码也是一件比较令人头痛的事情。

windows下一般都是GBK,最好加着字符集设置。pgsql2shp是不带字符集参数的,那只能求PGCLIENTENCODING参数来起作用了。

export PGCLIENTENCODING=GBK

pgsql2shp osm public.planet_osm_line

关于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 [] [.]

pgsql2shp []

OPTIONS:

-f Use this option to specify the name of the file

to create.

-h Allows you to specify connection to a database on a

machine other than the default.

-p Allows you to specify a database port other than the default.

-P Connect to the database with the specified password.

-u Connect to the database as the specified user.

-g 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.

3.shap导入到postgis

其实shap到postgis也是比较常用的功能,主要是生成sql文件。

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:

-s 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 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 Output WKT format (drops M and introduces coordinate drifts).

-W Specify the character encoding of Shape's

attribute column. (default : "WINDOWS-1252").

-N NULL geometries handling policy (insert*,skip,abort).

-n Only import DBF file.

-? Display this help screen.

一定要注意使用-s -W参数。

总结

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

如您喜欢交流学习经验,点击链接加入交流1群:1065694478(已满)交流2群:163560250

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/459197.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

修复./mysql/proc

mysql数据库只能建不能删的错误提示及处理方法:mysql> drop database testmysqldatabase;ERROR 145 (HY000): Table ./mysql/proc is marked as crashed and should be repaired处理方法:直接在mysql数据库里面使用root帐号登录后,进行修复…

Android有道词典查询功能

有道词典 任务要求&#xff1a;完成查词等功能 因为需要申请API key&#xff0c;这里直接给出地址供使用&#xff1a;http://fanyi.youdao.com/openapi?pathdata-mode 1、activity_main.xml基本格局&#xff08;不做任何说明&#xff09; 代码如下&#xff1a; 1 <Relative…

C++的迭代器Interator

*************************************************** 更多精彩&#xff0c;欢迎进入&#xff1a;http://shop115376623.taobao.com STL视频教程&#xff1a; http://item.taobao.com/item.htm?spma1z10.5-c.w4002-9510581626.21.y9vLuz&id43055362725 ***************…

从零开始学Axure原型设计(高级篇)

如果你熟悉了Axure的部件库&#xff0c;那么你可以得心应手地画出心目中产品的线框图&#xff1b;如果你会用Axure的母版、动态面板功能&#xff0c;那么你应该能够画出一些简单网站的原型图&#xff1b;但只有你精通了Axure的条件逻辑、变量、函数等高级交互&#xff0c;才能将…

python vector 初始化_从零开始搭建机器学习算法框架(python)--计算框架

介绍今天开始一个新的系列&#xff0c;这个系列的目标是用python在不使用任何第三方库的情况下去实现各类机器学习或者深度学习的算法。之所以会有这种想法是因为每当我想提高编程技巧的时候&#xff0c;我总希望能够做一些简单又有趣的小项目练手。我一直对机器学习算法颇感兴…

windows phone 页面主题设计

达到如图这个效果&#xff1a; 1.保证状态栏背景色与主题栏颜色相同需设置状态栏的透明度&#xff0c;代码如下&#xff1a;shell:SystemTray.IsVisible"True" shell:SystemTray.Opacity"0.01" 2.顶部状态栏高度为25&#xff0c;字的上下要留部分空白3.内容…

C++ Vector 使用心得

*************************************************** 更多精彩&#xff0c;欢迎进入&#xff1a;http://shop115376623.taobao.com STL视频教程&#xff1a; http://item.taobao.com/item.htm?spma1z10.5-c.w4002-9510581626.21.y9vLuz&id43055362725 ***************…

JAVA如何才能导出这样的EXCEL?

2019独角兽企业重金招聘Python工程师标准>>> 最近的项目有个需求&#xff0c;需要做个报表&#xff0c;excel如上所示。没有很好的办法&#xff0c;求指教。 转载于:https://my.oschina.net/secret620/blog/611450

python数据分析、挖掘与可视化 慕课答案_Python数据分析、挖掘与可视化(慕课版)...

第1章 Python开发环境的搭建与编码规范 1n1&#xff0e;1 Python开发环境的搭建与使用 1n1&#xff0e;1&#xff0e;1 IDLE 2n1&#xff0e;1&#xff0e;2 Anaconda3 3n1&#xff0e;1&#xff0e;3 安装扩展库 4n1&#xff0e;2 Python编码规范 5n1&#xff0e;3…

Xcode 修改工程名以及注意事项

1、先把整个工程文件夹名改为新的工程名。 2、打开工程&#xff0c;单击&#xff0c;输入新的工程名,会出现&#xff0c;点击确定。 3、回到工程界面&#xff0c;在中选择 Manage Schemes,然后再弹出的对话框&#xff0c;把工程名改为新的名字。 4、最好在工程中&#xff0c;把…

C++语言中multiset的相关用法及扩展

*************************************************** 更多精彩&#xff0c;欢迎进入&#xff1a;http://shop115376623.taobao.com *************************************************** cpp语言中&#xff0c;multiset是<set>库中一个非常有用的类型&#xff0c;它可…

[20160201]db_link与子光标问题.txt

[20160201]db_link与子光标问题.txt --生产系统遇到一个关于db_link产生大量子光标问题&#xff0c;当cursor_sharingforce的情况下&#xff0c;通过测试说明。 --注&#xff1a;这个问题我的测试仅仅存在10.2.0.4,11.2.0.4没有这个问题。 1.环境&#xff1a; SCOTTtest> &a…

脚本命令配置mysql_MySQL 自动化部署脚本

一、环境说明操作系统&#xff1a;CentOS数据库版本&#xff1a;MySQL 5.7/8.0参数&#xff1a;buffer pool 会根据系统内存指定、默认双一、GTID、SlowLog脚本默认安装路径&#xff1a;/usr/local/mysql脚本默认数据路径&#xff1a;/data/mysql*(根据安装包版本适应 比如 5.7…

STL 整理(map、set、vector、list、stack、queue、deque、priority_queue)

*************************************************** 更多精彩&#xff0c;欢迎进入&#xff1a;http://shop115376623.taobao.com STL视频教程&#xff1a; http://item.taobao.com/item.htm?spma1z10.5-c.w4002-9510581626.21.y9vLuz&id43055362725 ************…

第2章 数字之魅——快速寻找满足条件的两个数

快速寻找满足条件的两个数 问题描述 能否快速找出一个数组中的两个数字&#xff0c;让这两个数字之和等于一个给定的数字&#xff0c;为了简化起见&#xff0c;我们假设这个数组中肯定存在这样一组或以上符合要求的解。 分析与解法 【解法一】 代码如下&#xff1a; 1 package …

eigen 列向量转矩阵_快速入门矩阵运算——开源库Eigen

矩阵是数学中一个重要的工具&#xff0c;广泛应用于各种场景下的数值分析&#xff0c;例如&#xff0c;数字信号处理&#xff0c;图像处理等。我们如何在程序中使用矩阵进行运算呢&#xff1f;本文将为大家介绍一个开源的矩阵运算工具——Eigen。Eigen is a C template library…

优化android studio编译的apk大小

默认生成的apk&#xff08;release版&#xff09;太大&#xff08;只打印helloworld的apk大小就有1MB多&#xff09;&#xff0c;需要优化编译&#xff0c;如下&#xff0c;修改build.gradlebuildTypes { release {minifyEnabled true zipAlignEnabled true s…

STL set和multiset

*************************************************** 更多精彩&#xff0c;欢迎进入&#xff1a;http://shop115376623.taobao.com STL视频教程&#xff1a; http://item.taobao.com/item.htm?spma1z10.5-c.w4002-9510581626.21.y9vLuz&id43055362725 ***************…

cassandra 环境搭建

1 下载安装包 http://www.planetcassandra.org/cassandra/?dlinkhttp://downloads.datastax.com/community/dsc-cassandra-2.1.5-bin.tar.gz 用tar包的形式安装&#xff0c;解压缩之后就可以用&#xff1b;选择2.1.5&#xff0c;因为golang 客户端gocql的git 首页上支持最新的…

mysql raid_DBA们应该知道的RAID卡知识_MySQL

bitsCN.com对于数据库这种特殊应用IOphotoshop/ target_blank classinfotextkey>PS往往会成为瓶颈&#xff0c;突破的这个瓶颈的有效方法不多&#xff0c;软件方面主要是读写分离&#xff0c;垂直拆分&#xff0c;分区表技术&#xff0c;cluster。硬件方面主要是raid&#x…