PostGIS将shp2pgsql加载的数据存储在哪里?

问题描述 投票:0回答:1

当我安装 PostGIS 及其

address_standardizer
postgis_tiger_geocoder
扩展时,会创建许多表,我可以使用
\dt
看到这些表。这些表有什么作用以及
shp2pgsql
在哪里加载 shapefile?

为了展示这一点,一个空数据库,首先数据库有什么?没什么,用

\dt
来检查。

testgis=# -- Enable PostGIS (as of 3.0 contains just geometry/geography)
CREATE EXTENSION postgis;
-- enable raster support (for 3+)
CREATE EXTENSION postgis_raster;
-- Enable Topology
CREATE EXTENSION postgis_topology;
-- Enable PostGIS Advanced 3D
-- and other geoprocessing algorithms
-- sfcgal not available with all distributions
CREATE EXTENSION postgis_sfcgal;
-- fuzzy matching needed for Tiger
CREATE EXTENSION fuzzystrmatch;
-- rule based standardizer
CREATE EXTENSION address_standardizer;
-- example rule data set
CREATE EXTENSION address_standardizer_data_us;
-- Enable US Tiger Geocoder
CREATE EXTENSION postgis_tiger_geocoder;
CREATE EXTENSION
CREATE EXTENSION
CREATE EXTENSION
ERROR:  can not open the control file of extension «/usr/share/postgresql-13/extension/postgis_sfcgal.control»: File does not exist
CREATE EXTENSION
CREATE EXTENSION
CREATE EXTENSION
CREATE EXTENSION

现在请使用

\dt
进行检查。

使用 postgres 用户:

                  List of relations
 Schema |           Name           | Type  |  Owner   
--------+--------------------------+-------+----------
 public | spatial_ref_sys          | table | postgres
 public | us_gaz                   | table | postgres
 public | us_lex                   | table | postgres
 public | us_rules                 | table | postgres
 tiger  | addr                     | table | postgres
 tiger  | addrfeat                 | table | postgres
 tiger  | bg                       | table | postgres
 tiger  | county                   | table | postgres
 tiger  | county_lookup            | table | postgres
 tiger  | countysub_lookup         | table | postgres
 tiger  | cousub                   | table | postgres
 tiger  | direction_lookup         | table | postgres
 tiger  | edges                    | table | postgres
 tiger  | faces                    | table | postgres
 tiger  | featnames                | table | postgres
 tiger  | geocode_settings         | table | postgres
 tiger  | geocode_settings_default | table | postgres
 tiger  | loader_lookuptables      | table | postgres
 tiger  | loader_platform          | table | postgres
 tiger  | loader_variables         | table | postgres
 tiger  | pagc_gaz                 | table | postgres
 tiger  | pagc_lex                 | table | postgres
 tiger  | pagc_rules               | table | postgres
 tiger  | place                    | table | postgres
 tiger  | place_lookup             | table | postgres
 tiger  | secondary_unit_lookup    | table | postgres
 tiger  | state                    | table | postgres
 tiger  | state_lookup             | table | postgres
 tiger  | street_type_lookup       | table | postgres
 tiger  | tabblock                 | table | postgres
 tiger  | tract                    | table | postgres
 tiger  | zcta5                    | table | postgres
 tiger  | zip_lookup               | table | postgres
 tiger  | zip_lookup_all           | table | postgres
 tiger  | zip_lookup_base          | table | postgres
 tiger  | zip_state                | table | postgres
 tiger  | zip_state_loc            | table | postgres
(37 rows)

普通用户:

            Listado de relaciones
 Esquema |     Nombre      | Tipo  |  Dueño   
---------+-----------------+-------+----------
 public  | spatial_ref_sys | tabla | postgres
 public  | us_gaz          | tabla | postgres
 public  | us_lex          | tabla | postgres
 public  | us_rules        | tabla | postgres
(4 filas)

postgresql postgis postgis-installation
1个回答
3
投票

shp2pgsql
默认情况下将为每个导入的 shapefile 创建一个表格。但是,您可以使用
-a
选项将多个 shapefile 加载到同一个表中。

spatial_ref_sys
,顾名思义,只保留空间参考系的数据,这对于坐标变换等操作至关重要。

表格

us_gaz
us_lex
us_rules
与扩展名
address_standardizer
相关。

模式中的其他表

tiger
与扩展
postgis_tiger_geocoder
相关 - 也是您不必担心的系统表。

© www.soinside.com 2019 - 2024. All rights reserved.