Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

création des tuiles à la demande #358

Open
wants to merge 3 commits into
base: pifometre-v3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 86 additions & 0 deletions martin/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
postgres:
connection_string: postgresql://cadastre@localhost/bano
functions:
centroides_communes:
schema: public
function: centroides_communes
srid: 3857
geometry_column: geom
minzoom: 13
maxzoom: 13
geometry_type: POINT
properties:
code_insee: text
nom: text
class_pop: int4
layer: text
nb_adresses_osm: int4
nb_adresses_ban: int4
nb_noms_osm: int4
nb_noms_ban: int4
nb_noms_topo: int4
lieudit_cadastre:
schema: public
function: lieudit_cadastre
srid: 3857
geometry_column: geom
minzoom: 13
maxzoom: 13
geometry_type: POINT
properties:
fantoir: text
rapproche: boulean
layer: text
numeros_points_ban:
schema: public
function: numeros_points_ban
srid: 3857
geometry_column: geom
minzoom: 13
maxzoom: 13
geometry_type: POINT
properties:
numero: text
fantoir: text
commun: boulean
layer: text
numeros_points_osm:
schema: public
function: numeros_points_osm
srid: 3857
geometry_column: geom
minzoom: 13
maxzoom: 13
geometry_type: POINT
properties:
numero: text
fantoir: text
rapproche: boulean
commun: boulean
layer: text
place_osm:
schema: public
function: place_osm
srid: 3857
geometry_column: geom
minzoom: 13
maxzoom: 13
geometry_type: POINT
properties:
nom: text
fantoir: text
rapproche: boulean
layer: text
polygones_convexhull:
schema: public
function: polygones_convexhull
srid: 3857
geometry_column: geom
minzoom: 13
maxzoom: 13
geometry_type: GEOMETRY
properties:
fantoir: text
label_statut: varchar
layer: text
nom: text
Loading