Skip to content

Commit

Permalink
made martin expose the relevant tables in the catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Aug 12, 2024
1 parent 6b1a81f commit 321cb75
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion map/martin/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fonts:
postgres:
connection_string: $DATABASE_URL
auto_publish: false
tables: {}
tables:
# addrfeat:
# schema: tiger
# table: addrfeat
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 321cb75

Please sign in to comment.