From 321cb75f47d45d576a345e00d28a85ac19d66bbf Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Mon, 12 Aug 2024 23:56:58 +0200 Subject: [PATCH] made martin expose the relevant tables in the catalog --- map/martin/config.yaml | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/map/martin/config.yaml b/map/martin/config.yaml index b31226df7..17533f140 100644 --- a/map/martin/config.yaml +++ b/map/martin/config.yaml @@ -8,7 +8,7 @@ fonts: postgres: connection_string: $DATABASE_URL auto_publish: false - tables: {} + tables: # addrfeat: # schema: tiger # table: addrfeat @@ -231,6 +231,34 @@ postgres: # vtdst00: varchar # zcta5ce: varchar # zcta5ce00: varchar + indoor_nodes: + schema: public + table: indoor_nodes + srid: 3857 + geometry_column: geom + geometry_type: POINT + properties: + node_id: int8 + tags: jsonb + indoor_polygons: + schema: public + table: indoor_polygons + srid: 3857 + geometry_column: geom + geometry_type: GEOMETRY + properties: + area_id: int8 + tags: jsonb + type: text + indoor_ways: + schema: public + table: indoor_ways + srid: 3857 + geometry_column: geom + geometry_type: LINESTRING + properties: + tags: jsonb + way_id: int8 # place: # schema: tiger # table: place