Query Metrics
171
Database Queries
26
Different statements
21360.96 ms
Query time
0
Invalid entities
0
Managed entities
Queries
default connection
osm connection
| #▲ | Time | Info | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | 0.36 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 2 | 2.92 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 3 | 0.78 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = ? AND table_name = ?
Parameters:
[ "public" "osm_object_meta" ]
|
||||||||||||||||||||||||||||||||||||
| 4 | 0.68 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = ? AND table_name = ?
Parameters:
[ "public" "osm_object_history" ]
|
||||||||||||||||||||||||||||||||||||
| 5 | 2.40 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.28 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 | 10.08 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:
[
"01183"
]
|
||||||||||||||||||||||||||||||||||||
| 8 | 0.99 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = ? AND table_name = ?
Parameters:
[ "public" "osm_object_history" ]
|
||||||||||||||||||||||||||||||||||||
| 9 | 0.36 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:
[
"01183"
]
|
||||||||||||||||||||||||||||||||||||
| 10 | 0.25 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.33 ms |
CREATE INDEX IF NOT EXISTS zone_polygon_geom_idx ON zone_polygon USING GIST (geom)
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 12 | 37.01 ms |
SELECT ST_AsText(ST_Multi(geom)) FROM zone_polygon WHERE insee_code = ?
Parameters:
[
"01183"
]
|
||||||||||||||||||||||||||||||||||||
| 13 | 38.92 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
||||||||||||||||||||||||||||||||||||
| 14 | 0.25 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 15 | 0.58 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 16 | 1.13 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
||||||||||||||||||||||||||||||||||||
| 17 | 0.14 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 18 | 0.45 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 19 | 0.87 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
||||||||||||||||||||||||||||||||||||
| 20 | 0.17 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 21 | 0.46 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 22 | 2.73 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
||||||||||||||||||||||||||||||||||||
| 23 | 1.04 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
||||||||||||||||||||||||||||||||||||
| 24 | 0.17 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 25 | 0.50 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 26 | 0.72 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
||||||||||||||||||||||||||||||||||||
| 27 | 0.18 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 28 | 0.47 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
||||||||||||||||||||||||||||||||||||
| 30 | 0.18 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 31 | 0.46 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 32 | 0.87 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
||||||||||||||||||||||||||||||||||||
| 33 | 0.17 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 34 | 0.47 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 35 | 1.91 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
||||||||||||||||||||||||||||||||||||
| 36 | 0.17 ms |
SELECT 1
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 37 | 0.46 ms |
SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'osm_object_meta'
Parameters:
[]
|
||||||||||||||||||||||||||||||||||||
| 38 | 6.67 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.767408 46.107028,4.768468 46.108025,4.768648 46.10822,4.769377 46.109127,4.76985 46.109703,4.770112 46.110123,4.771074 46.1118,4.771398 46.112408,4.77159 46.113016,4.771685 46.114484,4.771519 46.11545,4.771498 46.116072,4.771722 46.117344,4.771968 46.117871,4.776137 46.116778,4.780863 46.115533,4.783576 46.114825,4.785651 46.114273,4.790605 46.11296,4.791842 46.112681,4.79867 46.111199,4.799048 46.111275,4.799615 46.1113,4.800572 46.111301,4.801675 46.111408,4.802115 46.11146,4.803929 46.111861,4.804864 46.112032,4.805492 46.112232,4.805781 46.112296,4.807444 46.11116,4.807479 46.111148,4.807121 46.10975,4.80608 46.107271,4.80567 46.106337,4.804273 46.105006,4.802641 46.105668,4.802511 46.105627,4.802242 46.105409,4.801994 46.105072,4.801618 46.104645,4.801443 46.104287,4.801248 46.103648,4.801244 46.103401,4.800955 46.103517,4.800657 46.103512,4.800505 46.103404,4.800271 46.103126,4.799733 46.102593,4.799035 46.102833,4.798884 46.102753,4.798661 46.102413,4.797923 46.101437,4.797792 46.101451,4.797166 46.101611,4.796969 46.101699,4.796844 46.101405,4.796715 46.101206,4.796429 46.100887,4.796006 46.101,4.795429 46.101096,4.794692 46.101329,4.794149 46.101603,4.792847 46.10222,4.791946 46.102619,4.791552 46.102765,4.79127 46.102779,4.790998 46.102997,4.790532 46.1031,4.790102 46.103101,4.789887 46.103073,4.78949 46.102945,4.789103 46.102668,4.788772 46.102932,4.788676 46.102946,4.788357 46.102813,4.788258 46.102641,4.788051 46.102177,4.786913 46.102022,4.785941 46.101996,4.786006 46.101839,4.785517 46.100979,4.7855 46.100841,4.785344 46.100799,4.784905 46.100794,4.78449 46.100708,4.784087 46.100571,4.78372 46.100591,4.783261 46.100723,4.781754 46.101128,4.7816 46.101161,4.781123 46.101208,4.778574 46.099884,4.773542 46.098285,4.773178 46.097627,4.772826 46.096959,4.772282 46.096025,4.771603 46.094953,4.77104 46.094114,4.770679 46.094172,4.770071 46.094344,4.769194 46.094963,4.76823 46.095739,4.76739 46.096492,4.766607 46.097176,4.764635 46.09887,4.764379 46.099076,4.764053 46.099398,4.763952 46.09945,4.76182 46.100265,4.760242 46.101058,4.761997 46.102492,4.764261 46.104078,4.767408 46.107028)))"
]
|
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. |