.. _ogrfdw-使用说明: OGR_FDW 使用说明 ================ .. note:: æ¤æ’件目å‰åªæ”¯æŒ Yukon for Postgres 版本,安装包ä¸åŒ…å«æœ‰æ¤æ’件。 安装 ---- Centos 7 安装: ~~~~~~~~~~~~~~ 1. æ·»åŠ PostgreSQL è½¯ä»¶æº .. code:: bash yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 2. 安装 ogr_fdw .. code:: bash yum install -y ogr_fdw_13.x86_64 æºç 安装 ~~~~~~~~ `æºç 下载 <https://github.com/pramsey/pgsql-ogr-fdw>`__ 下载好æºç åŽï¼Œç„¶åŽ ``./configure`` ,\ ``make``,\ ``make install`` å³å¯ã€‚ 需è¦æ³¨æ„的是:在编译时有å¯èƒ½éœ€è¦å¯¼å‡º pg_config ,gdal_config 所在路径. .. note:: å¦‚æžœæƒ³è¦ ogr_fdw æ’ä»¶æ”¯æŒ Oracle æ•°æ®åº“,则需è¦æ‰‹åŠ¨é…置编译环境: 安装下列软件包: `oracle-instantclient-basic`_ `oracle-instantclient-sqlplus`_ `oracle-instantclient-devel`_ 下载 `SDK 软件包 <https://download.oracle.com/otn_software/linux/instantclient/213000/instantclient-sdk-linux.x64-21.3.0.0.0.zip>`_ ,并将其解压到 ``/usr/lib/oracle/21/client64`` 目录下。æ¤æ—¶è¯¥ç›®å½•ä¸‹æœ‰å¦‚下内容: ``bin lib sdk SDK_LICENSE SDK_README`` 导出 ``export ORACLE_HOME=/usr/lib/oracle/21/client64`` 环境å˜é‡ 然åŽå†æ¬¡ configure gdal 库就å¯ä»¥çœ‹åˆ° OCI 支æŒã€‚ ``OCI support: yes`` 使用 ---- 使用 ``create extension ogr_fdw`` 创建扩展 Shapefile 文件 ~~~~~~~~~~~~~~ - 创建 server .. code:: sql CREATE SERVER shpdriver FOREIGN DATA WRAPPER ogr_fdw OPTIONS ( datasource '/home/pg13/data/shp', format 'ESRI Shapefile' ); å…¶ä¸ datasource 为 Shapefile 文件所在路径。format ä¸ºæ ¼å¼ã€‚ - 创建外部表 .. code:: sql create foreign table shptable( geom geometry ) server shpdriver options (layer 'bjroad'); å…¶ä¸ server 指定为我们上边创建的 server åå—,option ä¸æ·»åŠ 了一个必须的 layer 选项,指定我们è¦è¿žæŽ¥åˆ°çš„图层。 - æŸ¥è¯¢æ•°æ® .. code:: sql select count(*) from shptable; select * from shptable; FileGDB 文件 ~~~~~~~~~~~~ - 创建 server .. code:: sql CREATE SERVER filegdbserver FOREIGN DATA WRAPPER ogr_fdw OPTIONS ( datasource '/home/pg13/data/bjroad.gdb.zip', format 'OpenFileGDB' ); 这里我们在 options ä¸æŒ‡å®šæ•°æ®æ ¼å¼ä¸º OpenFileGDB - 创建外部表 .. code:: sql create foreign table filegdbtable( geom geometry(MULTILINESTRING, 4490) ) server filegdbserver options (layer 'bjroad_1'); 指定è¦é“¾æŽ¥çš„图层为 bjroad_1 - æŸ¥è¯¢æ•°æ® .. code:: sql select st_astext(geom) from filegdbtable; Oracle Spatial æ•°æ®åº“ ~~~~~~~~~~~~~~~~~~~~~ - 创建 server .. code:: sql CREATE SERVER ocidriver FOREIGN DATA WRAPPER ogr_fdw OPTIONS ( datasource 'OCI:supermap/supermap@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.13.179)(PORT=1521))(CONNECT_DATA=(SID=helowin)))', format 'OCI'); 这里 datasource ä¸ï¼Œæˆ‘们指定的 Oracle Spatial æ•°æ®åº“地å€ï¼Œç”¨æˆ·å,密ç åŠ SIDã€‚æ ¼å¼ä¸º OCI. - 创建外部表 .. code:: sql create foreign table ocitable( geom geometry ) server ocidriver options ( layer 'BJROAD'); 这里我们使用刚æ‰å¯¼å…¥çš„ bjroad.shp æ•°æ®ï¼ŒæŒ‡å®šè¦é“¾æŽ¥çš„图层为 BJROAD. - æŸ¥è¯¢æ•°æ® .. code:: sql select count(*) from ocitable; 导入所有图层 ~~~~~~~~~~~~ 如果想导入æŸä¸ª schema 下的所有图层,å¯ä»¥ä½¿ç”¨ import schema 方法。如果想导入所有 schema 请使用 ogr_all: .. code:: sql create schema shpschema; import foreign schema ogr_all from server shpdriver into shpschema; create schema filegdbschema; import foreign schema bjroad from server filegdbserver into filegdbschema; create schema ocishcema; import foreign schema ogr_all from server ocidriver into ocishcema; 如果在表å或者列åä¸å«æœ‰ä¸æ–‡å—符,请使用如下选项æ¥ç¦ç”¨è¿‡æ»¤ï¼š .. code:: sql IMPORT FOREIGN SCHEMA ogr_all FROM SERVER fgdbtest INTO fgdbpreserve OPTIONS ( launder_table_names 'false', launder_column_names 'false' ); .. _oracle-instantclient-basic: https://download.oracle.com/otn_software/linux/instantclient/213000/oracle-instantclient-basic-21.3.0.0.0-1.x86_64.rpm .. _oracle-instantclient-sqlplus: https://download.oracle.com/otn_software/linux/instantclient/213000/oracle-instantclient-sqlplus-21.3.0.0.0-1.x86_64.rpm .. _oracle-instantclient-devel: https://download.oracle.com/otn_software/linux/instantclient/213000/oracle-instantclient-devel-21.3.0.0.0-1.x86_64.rpm