ctc_poc2026/docs/tables/td_building.md

23 lines
2.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

|字段名称|字段类型|中文说明|注释|是否为主键|
|---|---|---|---|---|
|building_id|varchar(64) NOT NULL|楼宇唯一 ID|楼宇唯一 ID|是|
|building_name|varchar(128) NOT NULL|楼宇名称|楼宇名称|否|
|building_type|varchar(64)|楼宇类型编码|楼宇类型编码|否|
|building_type_name|varchar(128)|楼宇类型名称|楼宇类型名称|否|
|provincecode|integer NOT NULL|省编码|省编码|否|
|province_name|varchar(64) NOT NULL|省名称|省名称|否|
|citycode|integer NOT NULL|地市编码|地市编码|否|
|city_name|varchar(64) NOT NULL|地市名称|地市名称|否|
|districtcode|integer NOT NULL|区县编码|区县编码|否|
|district_name|varchar(64) NOT NULL|区县名称|区县名称|否|
|center_lon|numeric(10, 6)|楼宇中心点经度EPSG:4326|楼宇中心点经度EPSG:4326|否|
|center_lat|numeric(10, 6)|楼宇中心点纬度EPSG:4326|楼宇中心点纬度EPSG:4326|否|
|bbox|numeric(10, 6)[]|楼宇外接矩形 [minLon,minLat,maxLon,maxLat]|楼宇外接矩形 [minLon,minLat,maxLon,maxLat]|否|
|height|numeric(12, 2)|楼宇高度(米)|楼宇高度(米)|否|
|floor_count|integer|楼层数|楼层数|否|
|building_area|numeric(18, 4)|楼宇面积(平方米,按业务口径可表示建筑面积或占地面积)|楼宇面积(平方米,按业务口径可表示建筑面积或占地面积)|否|
|population_density|numeric(14, 4)|人口密度(人/平方公里或人/平方米,按业务口径)|人口密度(人/平方公里或人/平方米,按业务口径)|否|
|aoi_wkt|text|楼宇 AOI WKTEPSG:4326|楼宇 AOI WKTEPSG:4326|否|
|aoi_geom|geometry(MultiPolygon, 4326)|由 aoi_wkt 生成的 MultiPolygon 几何列,用于 GiST 空间索引|由 aoi_wkt 生成的 MultiPolygon 几何列,用于 GiST 空间索引|否|
|is_valid|smallint NOT NULL DEFAULT 1|是否有效1=有效 0=无效|是否有效1=有效 0=无效|否|
|updated_time|timestamp without time zone NOT NULL DEFAULT now()|记录更新时间|记录更新时间|否|