Query Metrics
171
Database Queries
26
Different statements
29490.93 ms
Query time
0
Invalid entities
0
Managed entities
Queries
default connection
osm connection
| #▲ | Time | Info | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | 0.55 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 2 | 5.25 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 3 | 0.75 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = ? AND table_name = ?
Parameters:
[ "public" "osm_object_meta" ]
|
||||||||||||||||||||||||||||||||||||
| 4 | 0.62 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = ? AND table_name = ?
Parameters:
[ "public" "osm_object_history" ]
|
||||||||||||||||||||||||||||||||||||
| 5 | 3.74 ms |
SELECT COUNT(*) FROM osm_object_meta WHERE osm_type = 'relation' AND geom IS NOT NULL AND (tags->'admin_level') = '8' AND (tags->'boundary') = 'administrative' AND (tags->'ref:INSEE') IS NOT NULL
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 6 | 1.67 ms |
INSERT INTO osm_object_meta ( osm_type, osm_id, geom, tags, version, osm_timestamp, changeset, osm_user, uid ) SELECT 'relation', latest.osm_id, latest.geom, latest.tags, latest.version, to_char(latest.valid_from AT TIME ZONE 'UTC', 'YYYY-MM-DD"T"HH24:MI:SS"Z"'), latest.changeset, latest.osm_user, latest.uid FROM ( SELECT DISTINCT ON (h.osm_id) h.osm_id, h.geom, h.tags, h.version, h.valid_from, h.changeset, h.osm_user, h.uid FROM osm_object_history h WHERE h.osm_type = 'relation' AND h.visible = true AND h.geom IS NOT NULL AND (h.tags->'boundary') = 'administrative' AND (h.tags->'admin_level') = '8' AND (h.tags->'ref:INSEE') IS NOT NULL ORDER BY h.osm_id, h.version DESC, h.valid_from DESC ) AS latest WHERE NOT EXISTS ( SELECT 1 FROM osm_object_meta m WHERE m.osm_type = 'relation' AND m.osm_id = latest.osm_id )
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 7 | 7.56 ms |
SELECT ST_AsText(ST_Multi(geom)) AS wkt FROM osm_object_meta m WHERE osm_type = 'relation' AND geom IS NOT NULL AND (tags->'ref:INSEE') = ? AND (tags->'admin_level') = '8' AND (tags->'boundary') = 'administrative' ORDER BY ST_Area(geom::geography) DESC NULLS LAST LIMIT 1
Parameters:
[
"01026"
]
|
||||||||||||||||||||||||||||||||||||
| 8 | 0.87 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = ? AND table_name = ?
Parameters:
[ "public" "osm_object_history" ]
|
||||||||||||||||||||||||||||||||||||
| 9 | 0.37 ms |
SELECT ST_AsText(ST_Multi(geom)) AS wkt FROM ( SELECT DISTINCT ON (h.osm_id) h.geom FROM osm_object_history h WHERE h.osm_type = 'relation' AND h.visible = true AND h.geom IS NOT NULL AND (h.tags->'ref:INSEE') = ? AND (h.tags->'admin_level') = '8' AND (h.tags->'boundary') = 'administrative' ORDER BY h.osm_id, h.version DESC, h.valid_from DESC ) latest ORDER BY ST_Area(geom::geography) DESC NULLS LAST LIMIT 1
Parameters:
[
"01026"
]
|
||||||||||||||||||||||||||||||||||||
| 10 | 0.23 ms |
CREATE TABLE IF NOT EXISTS zone_polygon ( insee_code TEXT PRIMARY KEY, geom geometry(MultiPolygon, 4326) NOT NULL, source TEXT NOT NULL, updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() )
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 11 | 0.60 ms |
CREATE INDEX IF NOT EXISTS zone_polygon_geom_idx ON zone_polygon USING GIST (geom)
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 12 | 1.96 ms |
SELECT ST_AsText(ST_Multi(geom)) FROM zone_polygon WHERE insee_code = ?
Parameters:
[
"01026"
]
|
||||||||||||||||||||||||||||||||||||
| 13 | 26.81 ms |
SELECT osm_type, osm_id::text AS osm_id, ST_Y(ST_Centroid(geom)) AS lat, ST_X(ST_Centroid(geom)) AS lon, tags::jsonb AS tags_json, version, osm_timestamp, changeset, osm_user, uid::bigint AS uid, CASE WHEN osm_type IN ('way','relation') THEN ST_Area(geom::geography) ELSE NULL END AS area_m2 FROM osm_object_meta m WHERE geom IS NOT NULL AND ST_Intersects(m.geom, ST_GeomFromText(?, 4326)) AND ( (tags->'emergency') = 'fire_hydrant' OR (tags->'amenity') = 'fire_hydrant' OR (tags->'amenity') = 'charging_station' OR (tags->'amenity') = 'toilets' OR (tags->'highway') = 'bus_stop' OR (tags->'public_transport') = 'platform' OR (tags->'emergency') = 'defibrillator' OR (tags->'man_made') = 'surveillance' OR (tags->'amenity') = 'recycling' OR (tags->'power') = 'substation' OR exist(tags, 'healthcare') OR (tags->'amenity') IN ('doctors','pharmacy','hospital','clinic','social_facility') OR (tags->'healthcare') = 'laboratory' OR (tags->'amenity') = 'school' OR (tags->'amenity') = 'police' OR (tags->'amenity') = 'bicycle_parking' OR ((tags->'advertising') = 'board' AND (tags->'message') = 'political') OR exist(tags, 'building') OR exist(tags, 'ref:FR:RNB') OR exist(tags, 'email') OR exist(tags, 'contact:email') OR (tags->'amenity') = 'bench' OR (tags->'amenity') = 'waste_basket' OR (tags->'highway') = 'street_lamp' OR (tags->'amenity') = 'drinking_water' OR (tags->'natural') = 'tree' OR (tags->'power') = 'pole' OR (tags->'man_made') = 'manhole' OR (tags->'amenity') = 'public_bookcase' OR (tags->'leisure') = 'playground' OR (tags->'amenity') = 'restaurant' OR exist(tags, 'air_conditioning') OR (tags->'highway') = 'cycleway' OR (tags->'highway') = 'busway' OR (EXISTS (SELECT 1 FROM unnest(akeys(tags)) k WHERE k = 'cycleway' OR k LIKE 'cycleway:%') AND exist(tags, 'highway') AND (tags->'highway') IS NOT NULL AND (tags->'highway') NOT IN ('cycleway', 'busway')) OR (exist(tags, 'highway') AND (tags->'highway') IS NOT NULL AND (tags->'highway') NOT IN ('cycleway', 'busway') AND exist(tags, 'bicycle') AND (tags->'bicycle') IS NOT NULL AND (tags->'bicycle') <> 'no') OR (tags->'landuse') = 'construction' OR (tags->'railway') IN ('station','halt') OR ((tags->'public_transport') = 'station' AND (tags->'train') = 'yes') OR (tags->'office') IN ('association','ngo') OR exist(tags, 'club') OR (tags->'social_facility') IN ('ngo','outreach') OR EXISTS (SELECT 1 FROM unnest(akeys(tags)) k WHERE k LIKE 'proposed:%') OR EXISTS (SELECT 1 FROM unnest(akeys(tags)) k WHERE k LIKE 'was:%') OR EXISTS (SELECT 1 FROM unnest(akeys(tags)) k WHERE k LIKE 'addr:%') )
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
||||||||||||||||||||||||||||||||||||
| 14 | 0.21 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 15 | 0.57 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 16 | 1.02 ms |
SELECT osm_type, osm_id::text AS osm_id, ST_Y(ST_Centroid(geom)) AS lat, ST_X(ST_Centroid(geom)) AS lon, tags::jsonb AS tags_json, version, osm_timestamp, changeset, osm_user, uid::bigint AS uid FROM osm_object_meta m WHERE geom IS NOT NULL AND ST_Intersects(m.geom, ST_GeomFromText(?, 4326)) AND ( (tags->'emergency') = 'fire_hydrant' OR (tags->'amenity') = 'fire_hydrant' )
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
||||||||||||||||||||||||||||||||||||
| 17 | 0.17 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 18 | 0.49 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 19 | 0.81 ms |
SELECT osm_type, osm_id::text AS osm_id, ST_Y(ST_Centroid(geom)) AS lat, ST_X(ST_Centroid(geom)) AS lon, tags::jsonb AS tags_json, version, osm_timestamp, changeset, osm_user, uid::bigint AS uid, CASE WHEN osm_type IN ('way','relation') THEN ST_Area(geom::geography) ELSE NULL END AS area_m2 FROM osm_object_meta m WHERE geom IS NOT NULL AND ST_Intersects(m.geom, ST_GeomFromText(?, 4326)) AND (tags->'amenity') = 'parking'
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
||||||||||||||||||||||||||||||||||||
| 20 | 0.15 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 21 | 0.60 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 22 | 2.13 ms |
SELECT COALESCE(SUM(CASE WHEN (tags->'highway') IN ('cycleway', 'busway') THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) WHEN (tags->'cycleway:both') IN ('track', 'opposite_track', 'separate') AND NOT ((tags->'highway') = 'proposed' AND exist(tags, 'proposed') AND (tags->'proposed') = 'cycleway') AND exist(tags, 'highway') AND (tags->'highway') IS NOT NULL AND (tags->'highway') NOT IN ('cycleway', 'busway') THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS separated_km, COALESCE(SUM(CASE WHEN EXISTS (SELECT 1 FROM unnest(akeys(tags)) k WHERE k = 'cycleway' OR k LIKE 'cycleway:%') AND NOT ((tags->'highway') = 'proposed' AND exist(tags, 'proposed') AND (tags->'proposed') = 'cycleway') AND exist(tags, 'highway') AND (tags->'highway') IS NOT NULL AND (tags->'highway') NOT IN ('cycleway', 'busway') AND NOT ((tags->'cycleway:both') IN ('track', 'opposite_track', 'separate')) THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS lane_km, COALESCE(SUM(CASE WHEN (exist(tags, 'bicycle') AND (tags->'bicycle') IS NOT NULL AND (tags->'bicycle') <> 'no') AND NOT ((tags->'highway') = 'proposed' AND exist(tags, 'proposed') AND (tags->'proposed') = 'cycleway') AND exist(tags, 'highway') AND (tags->'highway') IS NOT NULL AND (tags->'highway') NOT IN ('cycleway', 'busway') AND NOT (EXISTS (SELECT 1 FROM unnest(akeys(tags)) k WHERE k = 'cycleway' OR k LIKE 'cycleway:%')) THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS designated_km, COALESCE(SUM(CASE WHEN (tags->'highway') = 'proposed' AND exist(tags, 'proposed') AND (tags->'proposed') = 'cycleway' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS proposed_cycleway_km FROM osm_object_meta m CROSS JOIN (SELECT ST_MakeValid(ST_SetSRID(ST_GeomFromText(?), 4326)) AS poly) z WHERE m.geom IS NOT NULL AND m.osm_type IN ('way', 'relation') AND ST_Intersects(m.geom, z.poly) AND ( (tags->'highway') = 'proposed' AND exist(tags, 'proposed') AND (tags->'proposed') = 'cycleway' OR (tags->'highway') IN ('cycleway', 'busway') OR (EXISTS (SELECT 1 FROM unnest(akeys(tags)) k WHERE k = 'cycleway' OR k LIKE 'cycleway:%') AND exist(tags, 'highway')) OR ((exist(tags, 'bicycle') AND (tags->'bicycle') IS NOT NULL AND (tags->'bicycle') <> 'no') AND exist(tags, 'highway')) )
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
||||||||||||||||||||||||||||||||||||
| 23 | 1.01 ms |
SELECT COALESCE(SUM(COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0)), 0) / 1000.0 AS km FROM osm_object_meta m CROSS JOIN (SELECT ST_MakeValid(ST_SetSRID(ST_GeomFromText(?), 4326)) AS poly) z WHERE m.geom IS NOT NULL AND m.osm_type IN ('way', 'relation') AND ST_Intersects(m.geom, z.poly) AND exist(tags, 'highway') AND (tags->'highway') NOT IN ( 'motorway', 'motorway_link', 'trunk', 'trunk_link', 'footway', 'steps', 'pedestrian', 'bridleway', 'raceway', 'cycleway', 'busway', 'construction', 'proposed' ) AND (tags->'oneway') IN ('yes', '-1', '1') AND NOT ( (tags->'highway') IN ('cycleway', 'busway') OR (EXISTS (SELECT 1 FROM unnest(akeys(tags)) k WHERE k = 'cycleway' OR k LIKE 'cycleway:%') AND exist(tags, 'highway') AND (tags->'highway') IS NOT NULL AND (tags->'highway') NOT IN ('cycleway', 'busway')) OR ((exist(tags, 'bicycle') AND (tags->'bicycle') IS NOT NULL AND (tags->'bicycle') <> 'no') AND exist(tags, 'highway') AND (tags->'highway') IS NOT NULL AND (tags->'highway') NOT IN ('cycleway', 'busway') AND NOT (EXISTS (SELECT 1 FROM unnest(akeys(tags)) k WHERE k = 'cycleway' OR k LIKE 'cycleway:%')))) AND NOT ((tags->'oneway:bicycle') = 'no')
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
||||||||||||||||||||||||||||||||||||
| 24 | 0.13 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 25 | 0.44 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 26 | 0.78 ms |
SELECT osm_type, osm_id::text AS osm_id, ST_Y(ST_Centroid(geom)) AS lat, ST_X(ST_Centroid(geom)) AS lon, tags::jsonb AS tags_json, version, osm_timestamp, changeset, osm_user, uid::bigint AS uid FROM osm_object_meta m WHERE geom IS NOT NULL AND ST_Intersects(m.geom, ST_GeomFromText(?, 4326)) AND (tags->'man_made') = 'monitoring_station' AND (tags->'monitoring:bicycle') = 'yes'
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
||||||||||||||||||||||||||||||||||||
| 27 | 0.14 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 28 | 0.45 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 29 | 1.60 ms |
SELECT COALESCE(SUM(CASE WHEN exist(tags, 'highway') THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS total_km, COALESCE(SUM(CASE WHEN (tags->'highway') = 'primary' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS primary_km, COALESCE(SUM(CASE WHEN (tags->'highway') = 'secondary' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS secondary_km, COALESCE(SUM(CASE WHEN (tags->'highway') = 'tertiary' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS tertiary_km, COALESCE(SUM(CASE WHEN (tags->'highway') = 'residential' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS residential_km, COALESCE(SUM(CASE WHEN (tags->'highway') = 'unclassified' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS unclassified_km, COALESCE(SUM(CASE WHEN (tags->'highway') = 'service' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS service_km, COALESCE(SUM(CASE WHEN (tags->'highway') = 'cycleway' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS cycleway_km, COALESCE(SUM(CASE WHEN (tags->'highway') = 'footway' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS footway_km, COALESCE(SUM(CASE WHEN (tags->'railway') = 'rail' THEN COALESCE(ST_Length(ST_Intersection(ST_MakeValid(m.geom), z.poly)::geography), 0) ELSE 0 END), 0) / 1000.0 AS rail_km, COUNT(*) FILTER (WHERE exist(tags, 'highway')) AS highway_count FROM osm_object_meta m CROSS JOIN (SELECT ST_MakeValid(ST_SetSRID(ST_GeomFromText(?), 4326)) AS poly) z WHERE m.geom IS NOT NULL AND m.osm_type IN ('way', 'relation') AND ST_Intersects(m.geom, z.poly) AND (exist(tags, 'highway') OR (tags->'railway') = 'rail')
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
||||||||||||||||||||||||||||||||||||
| 30 | 0.18 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 31 | 0.77 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 32 | 0.79 ms |
SELECT osm_type, osm_id::text AS osm_id, ST_Y(ST_Centroid(geom)) AS lat, ST_X(ST_Centroid(geom)) AS lon, tags::jsonb AS tags_json, version, osm_timestamp, changeset, osm_user, uid::bigint AS uid, ST_AsGeoJSON(ST_Force2D(geom), 6, 0) AS geom_geojson, ST_Length(geom::geography) AS length_m, (tags->'route') AS route_value FROM osm_object_meta m WHERE geom IS NOT NULL AND osm_type = 'relation' AND ST_Intersects(m.geom, ST_GeomFromText(?, 4326)) AND (tags->'type') = 'route' AND (tags->'route') IN ('hiking','foot','running','walking','fitness_trail','horse','inline_skates')
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
||||||||||||||||||||||||||||||||||||
| 33 | 0.17 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 34 | 0.49 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 35 | 1.88 ms |
SELECT osm_type, osm_id::text AS osm_id, ST_Y(ST_Centroid(geom)) AS lat, ST_X(ST_Centroid(geom)) AS lon, tags::jsonb AS tags_json, version, osm_timestamp, changeset, osm_user, uid::bigint AS uid FROM osm_object_meta m WHERE geom IS NOT NULL AND ST_Intersects(m.geom, ST_GeomFromText(?, 4326)) AND ( exist(tags, 'traffic_sign') OR (tags->'highway') IN ('traffic_signals','give_way','stop') OR (tags->'crossing') = 'traffic_signals' OR exist(tags, 'traffic_calming') OR (tags->'railway') IN ('level_crossing','crossing') OR exist(tags, 'maxheight') OR exist(tags, 'maxwidth') OR (osm_type IN ('way','relation') AND ( exist(tags, 'maxspeed') OR (tags->'oneway') = 'yes' )) )
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
||||||||||||||||||||||||||||||||||||
| 36 | 0.18 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 37 | 0.47 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 38 | 3.73 ms |
SELECT osm_type, osm_id::text AS osm_id, ST_Y(ST_Centroid(geom)) AS lat, ST_X(ST_Centroid(geom)) AS lon, tags::jsonb AS tags_json, version, osm_timestamp, changeset, osm_user, uid::bigint AS uid FROM osm_object_meta m WHERE geom IS NOT NULL AND ST_Intersects(m.geom, ST_GeomFromText(?, 4326)) AND akeys(tags) && ARRAY['amenity','shop','office','craft','leisure','healthcare','emergency','man_made','power','highway','railway','public_transport','landuse','historic','barrier','tourism','sport','place','waterway','natural','geological','route','military','traffic_sign','traffic_calming','seamark','route_master','water','airway','aerialway','building']::text[]
Parameters:
[
"MULTIPOLYGON(((4.926422 46.304434,4.926131 46.30459,4.925908 46.304884,4.925835 46.304918,4.925315 46.304869,4.924961 46.304938,4.92477 46.304896,4.924677 46.30458,4.924574 46.304478,4.924461 46.304463,4.924322 46.30459,4.924136 46.304679,4.923868 46.304895,4.92368 46.304991,4.92313 46.305134,4.922546 46.305698,4.922302 46.305913,4.922363 46.306159,4.922327 46.306386,4.922165 46.306511,4.921882 46.306577,4.921667 46.30674,4.92145 46.30697,4.92109 46.3074,4.920867 46.307753,4.921491 46.307897,4.921884 46.308501,4.921968 46.308538,4.923285 46.308144,4.923887 46.308586,4.92433 46.308983,4.925081 46.309629,4.924197 46.310288,4.924447 46.310418,4.926364 46.310934,4.926455 46.310971,4.926579 46.311428,4.926834 46.312289,4.926848 46.312539,4.926816 46.312669,4.927685 46.312802,4.928366 46.312859,4.92921 46.312881,4.929656 46.312904,4.930455 46.312923,4.931469 46.312911,4.932399 46.312908,4.933115 46.312886,4.933593 46.312946,4.934171 46.313102,4.934505 46.313209,4.934882 46.313264,4.935992 46.313178,4.936726 46.313212,4.937197 46.313167,4.937495 46.313114,4.937909 46.312943,4.938772 46.312473,4.939318 46.312283,4.939803 46.312151,4.940173 46.312071,4.939703 46.311975,4.938547 46.311629,4.93779 46.311015,4.93571 46.310716,4.934896 46.310466,4.934064 46.310264,4.933445 46.310087,4.932429 46.309763,4.932964 46.308554,4.932717 46.30846,4.932911 46.308091,4.932886 46.30778,4.933068 46.307749,4.934096 46.307719,4.934375 46.306981,4.934152 46.306366,4.93403 46.305955,4.934016 46.305779,4.934468 46.305969,4.934602 46.305876,4.934656 46.30577,4.93491 46.304715,4.934893 46.304475,4.934915 46.304266,4.934897 46.303868,4.935098 46.303809,4.935161 46.303535,4.93512 46.30344,4.934904 46.303306,4.934715 46.303047,4.934489 46.302954,4.934118 46.30294,4.933623 46.303092,4.933391 46.303189,4.93258 46.303421,4.931978 46.303378,4.931437 46.303378,4.931127 46.303315,4.930991 46.303224,4.930694 46.303163,4.930306 46.303189,4.929873 46.303147,4.92965 46.303163,4.928815 46.303404,4.928536 46.303512,4.927923 46.303709,4.927388 46.304015,4.927202 46.304099,4.927018 46.304137,4.926644 46.304347,4.926422 46.304434)))"
]
|
Database Connections
| Name | Service |
|---|---|
| default | doctrine.dbal.default_connection |
| osm | doctrine.dbal.osm_connection |
Entity Managers
| Name | Service |
|---|---|
| default | doctrine.orm.default_entity_manager |
Second Level Cache
Second Level Cache is not enabled.
Managed Entities
default entity manager
| Class | Amount of managed objects |
|---|
Entities Mapping
| Class | Mapping errors |
|---|---|
| App\Entity\Stats | No errors. |
| App\Entity\Place | No errors. |
| App\Entity\StatsHistory | No errors. |
| App\Entity\CityFollowUp | No errors. |
| App\Entity\ZonePlaces | No errors. |
| App\Entity\SireneEntreprise | No errors. |