创建空间数据库后,会默认生成数据表geometry_columns表,它存放了当前数据库中所有表的几何字段信息。用工具pgAdmin查看该表。

PostGIS测试 - geometry_columns

   该表各列的含义如下:

  • f_table_catalog表示数据库名。
  • f_table_schema表示模式。
  • f_table_name表示表名。
  • f_geometry_column表示表中几何字段的名称。
  • coord_dimension表示几何字段维数。
  • srid表示几何字段的空间参考。
  • type表示几何字段的类型。

 

 

相关文章:

  • 2021-07-25
  • 2021-11-19
  • 2022-12-23
  • 2021-05-01
  • 2021-09-02
  • 2022-01-09
猜你喜欢
  • 2022-12-23
  • 2021-06-04
  • 2021-09-10
  • 2021-11-24
  • 2021-07-01
  • 2022-01-09
  • 2021-12-07
相关资源
相似解决方案