From 23b0aad695e77d2dc2948f2a04cf3ad8708a3d5d Mon Sep 17 00:00:00 2001 From: MaelREBOUX Date: Sun, 7 Mar 2021 11:42:19 +0100 Subject: [PATCH] =?UTF-8?q?cr=C3=A9ation=20r=C3=A9pertoire=202020?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + data/2020/redadeg_2020.sql | 138 ++++++++++++++++++ .../2020}/update_infos_secteurs.sql | 0 scripts/backup/README.txt | 2 - scripts/backup/jour_courant/README.txt | 2 - scripts/backup/phase_1/README.txt | 2 - ...016_1804_phase_2_points_coupe_trace.geoson | 1 - scripts/backup/phase_2/README.txt | 2 - scripts/backup/phase_5/README.txt | 2 - scripts/data/README.md | 1 - 10 files changed, 139 insertions(+), 12 deletions(-) create mode 100644 data/2020/redadeg_2020.sql rename {scripts => data/2020}/update_infos_secteurs.sql (100%) delete mode 100644 scripts/backup/README.txt delete mode 100644 scripts/backup/jour_courant/README.txt delete mode 100644 scripts/backup/phase_1/README.txt delete mode 100644 scripts/backup/phase_2/20191016_1804_phase_2_points_coupe_trace.geoson delete mode 100644 scripts/backup/phase_2/README.txt delete mode 100644 scripts/backup/phase_5/README.txt delete mode 100644 scripts/data/README.md diff --git a/.gitignore b/.gitignore index 85c8ff2..6bd8954 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ data/2020/backup/ data/2020/data_backup/ data/2020/data_vm/ +data/2020/data/ pg_backup/ diff --git a/data/2020/redadeg_2020.sql b/data/2020/redadeg_2020.sql new file mode 100644 index 0000000..798e6a5 --- /dev/null +++ b/data/2020/redadeg_2020.sql @@ -0,0 +1,138 @@ + + + +-- vue simple pour les longueurs directe en 3948 +SELECT + ogc_fid, name, '' AS secteur, + TRUNC( ST_Length(the_geom)::numeric , 0) AS longueur_m, + TRUNC( (ST_Length(the_geom)/1000)::numeric , 3) AS longueur_km, + the_geom +FROM phase_1_trace_3948 ; + + + +-- vue simple sur la couche en 3857 +SELECT + ogc_fid, name, '' AS secteur, + TRUNC( ST_Length(ST_Transform(the_geom,3857))::numeric , 0) AS longueur_m, + TRUNC( (ST_Length(ST_Transform(the_geom,3857))/1000)::numeric , 3) AS longueur_km, + the_geom +FROM phase_1_trace ; + + + + + +-- crée une polyligne qui part de l'origine et qui fait 50 % de la longueur d'origine +DROP VIEW test_line ; +CREATE VIEW test_line AS + SELECT + ogc_fid, + ST_LineSubstring(the_geom, 0.0, 0.5)::geometry(Linestring,4326) AS the_geom, + TRUNC( ST_Length(ST_Transform(ST_LineSubstring(the_geom, 0.0, 0.5),3948))::numeric , 0) AS longueur_m + FROM phase_1_trace_3948 + WHERE ogc_fid = 9 ; + +-- et le point terminal +DROP VIEW test_point ; +CREATE VIEW test_point AS + SELECT + ogc_fid, + ST_Line_Interpolate_Point(the_geom, 0.5)::geometry(Point, 3948) AS the_geom + FROM phase_1_trace_3948 + WHERE ogc_fid = 9 ; + + + +-- sélection simple avec id, géométrie, longueur, nb de sections et coeff pour les fonctions +SELECT + ogc_fid, + TRUNC(ST_Length(the_geom)::numeric,0) AS longueur, + TRUNC((ST_Length(the_geom)/1000)::numeric,2) AS nb_sections, + 1 / TRUNC((ST_Length(the_geom)/1000)::numeric,2)::numeric AS part, + ST_LineMerge(the_geom) AS the_geom +FROM phase_1_trace_3948 + + +-- remplit une table avec l'extraction de +TRUNCATE phase_1_pk_auto ; +INSERT INTO phase_1_pk_auto +SELECT ogc_fid AS id, ((dp).geom)::geometry(Point,3948) AS the_geom +FROM + ( + SELECT ogc_fid, ST_DumpPoints(ST_Segmentize(the_geom, 1000)) AS dp + FROM phase_1_trace_3948 +) AS foo + + + + +-- cette vue crée des tronçons de 940 m à partir des longs tracés +DROP VIEW phase_1_trace_troncons_3948 ; +CREATE VIEW phase_1_trace_troncons_3948 AS +SELECT + row_number() over() as uid, + ogc_fid, + ST_LineSubstring(the_geom, 940.00*n/length, + CASE + WHEN 940.00*(n+1) < length THEN 940.00*(n+1)/length + ELSE 1 + END) AS the_geom +FROM + (SELECT + ogc_fid, + ST_LineMerge(the_geom)::geometry(LineString,3948) AS the_geom, + ST_Length(the_geom) As length + FROM phase_1_trace_3948 + ) AS t +CROSS JOIN generate_series(0,10000) AS n +WHERE n*940.00/length < 1 ; + +-- et le point terminal +DROP VIEW phase_1_pk_auto_3948 ; +CREATE VIEW phase_1_pk_auto_3948 AS + SELECT + uid, + ST_Line_Interpolate_Point(the_geom, 1)::geometry(Point, 3948) AS the_geom + FROM phase_1_trace_troncons_3948 ; + + + +-- tableau de synthèse nb km par secteur +SELECT + secteur_id, secteur_nom_br, secteur_nom_fr, + SUM(longueur) AS longueur_m, + TRUNC( SUM(longueur)/1000::numeric , 3) AS longueur_km, + ROUND( SUM(longueur)/1000::numeric ) AS longueur_km_arrondi +FROM v_phase_1_trace_troncons_3948 +GROUP BY secteur_id, secteur_nom_br, secteur_nom_fr +ORDER BY secteur_id ; + + + + + + + + + +SELECT + st_length(ST_Collect(the_geom)) AS longueur_m, + ROUND( st_length(ST_Collect(the_geom))::numeric/1000::numeric ) AS longueur_km, + ST_Collect(the_geom) AS the_geom +FROM phase_2_trace_pgr + + + TRUNC( a.cost::numeric , 0) AS longueur_m, + TRUNC( a.agg_cost::numeric , 0) AS longueur_cumul_m, + --TRUNC( a.cost::numeric/1000::numeric , 3) AS longueur_km, + TRUNC( a.agg_cost::numeric/1000::numeric , 3) AS longueur_cumul_km, + --ROUND( a.cost::numeric/1000::numeric ) AS longueur_km_arrondi, + ROUND( a.agg_cost::numeric/1000::numeric ) AS longueur_cumul_km_arrondi, + + + + + + + diff --git a/scripts/update_infos_secteurs.sql b/data/2020/update_infos_secteurs.sql similarity index 100% rename from scripts/update_infos_secteurs.sql rename to data/2020/update_infos_secteurs.sql diff --git a/scripts/backup/README.txt b/scripts/backup/README.txt deleted file mode 100644 index f634067..0000000 --- a/scripts/backup/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -ici les fichiers sauvegardés automatiquement - diff --git a/scripts/backup/jour_courant/README.txt b/scripts/backup/jour_courant/README.txt deleted file mode 100644 index f634067..0000000 --- a/scripts/backup/jour_courant/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -ici les fichiers sauvegardés automatiquement - diff --git a/scripts/backup/phase_1/README.txt b/scripts/backup/phase_1/README.txt deleted file mode 100644 index f634067..0000000 --- a/scripts/backup/phase_1/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -ici les fichiers sauvegardés automatiquement - diff --git a/scripts/backup/phase_2/20191016_1804_phase_2_points_coupe_trace.geoson b/scripts/backup/phase_2/20191016_1804_phase_2_points_coupe_trace.geoson deleted file mode 100644 index af8590e..0000000 --- a/scripts/backup/phase_2/20191016_1804_phase_2_points_coupe_trace.geoson +++ /dev/null @@ -1 +0,0 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.430434,48.497899]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.193967,48.474829]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.20358,48.472588]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.823148,48.567428]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.443024,48.187442]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.435273,48.183596]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.431087,48.182323]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.609463,48.120452]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.609113,48.12007]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.608484,48.118811]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.608516,48.117966]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.63215,48.117511]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.633419,48.114925]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.638701,48.114115]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.634002,48.114208]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.67938,48.109918]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.686752,48.106767]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.684626,48.106187]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.684604,48.104862]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.684332,48.10229]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.684388,48.102151]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.688254,48.098378]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.689146,48.096818]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.75527,48.062114]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.74903,48.027142]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.736203,48.02304]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.727596,48.020815]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.700409,48.009687]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.674291,48.003317]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.666443,48.001777]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.668197,47.997844]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.666206,47.99711]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.613241,47.895967]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.373871,47.718686]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.372514,47.718527]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.37208,47.717122]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.374879,47.713758]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.38314,47.706444]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.496585,47.439856]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.542495,47.308056]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.542855,47.307834]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.542796,47.308216]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.553635,47.294637]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.560905,47.281782]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.576253,47.254028]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.567966,47.208928]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.584943,47.222342]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.58512,47.222462]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.595957,47.209741]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.199476,47.290494]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.206201,47.273418]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.054793,47.635022]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.062332,47.639623]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.08568,47.65178]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.286766,47.727266]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.420908,47.865163]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.548498,47.952528]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.547084,47.947396]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.772807,47.879515]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.813302,47.887659]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.824302,47.890476]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.882859,47.862612]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.999205,47.842044]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.005338,47.831326]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.007868,47.779111]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.004815,47.77567]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.897302,47.769875]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.84283,47.753644]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.839426,47.750287]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.766927,47.685121]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.765271,47.682116]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.799353,47.696371]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.811058,47.699556]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.956395,47.70379]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.346865,47.761819]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.353646,47.760643]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.353673,47.760687]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.352776,47.7594]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.355295,47.756774]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.373153,47.741408]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.384171,47.735023]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.382701,47.736928]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.385358,47.733496]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.427478,47.739677]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.426663,47.740547]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.425922,47.741233]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.421479,47.771818]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.37871,47.835828]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.336672,47.888387]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.338266,47.898362]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.336802,47.915896]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.545566,47.871463]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.552287,47.868145]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.552482,47.868153]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.627482,47.805519]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.703957,47.86767]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.023759,48.003326]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.030373,48.002518]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.060555,47.996969]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.072605,47.994533]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.072465,47.994469]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.092528,47.994121]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.121782,47.978512]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.121551,47.979345]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.15429,47.937159]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.171965,47.939261]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.168929,47.956417]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.169529,47.957483]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.169657,47.957871]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.181253,47.968398]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.434491,48.395915]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.434544,48.395776]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.434518,48.396083]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.483574,48.389244]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.484214,48.389111]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.565682,48.374491]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.252853,48.454915]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.256802,48.453307]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.441582,48.807497]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.377832,48.382056]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.377735,48.382455]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.40847,48.39502]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.419831,48.396264]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.421682,48.396855]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.434391,48.396313]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.458072,48.39603]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.465084,48.398131]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.466994,48.401514]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.467015,48.401778]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.467187,48.402212]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.475532,48.396643]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.48067,48.391592]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.837684,48.577003]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.464007,48.731267]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.464914,48.731382]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.464742,48.731748]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.462482,48.743953]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.490216,48.782074]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.492135,48.786222]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.459291,48.806346]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.441595,48.807944]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.441901,48.806481]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.441917,48.806093]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.414915,48.794824]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.413907,48.794867]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.261178,48.752676]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.11164,48.78258]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.144739,48.766842]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.162181,48.697314]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.440875,48.555302]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.404708,48.406976]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.331783,48.427888]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.49622,48.048906]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.494342,48.050194]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.554142,48.201112]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.612265,47.217313]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.603972,47.218231]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.597588,47.213257]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.596113,47.209701]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.595914,47.209595]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.595056,47.209766]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.573051,47.206774]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.84392,48.574925]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.078421,48.405679]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.464968,48.731769]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.182079,48.438889]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.242388,48.452447]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.244751,48.453876]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.246756,48.452357]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.252566,48.44937]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.256446,48.453254]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.25754,48.453809]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.268515,48.46251]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.322957,48.47144]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.323677,48.471939]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.32706,48.477237]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.334264,48.479385]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.437554,48.501737]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.498719,48.498449]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.567246,48.467165]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.566977,48.46722]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.615042,48.437876]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.621156,48.434797]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.621591,48.434744]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.63158,48.425573]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.620588,48.38525]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.594656,48.373941]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.591436,48.372248]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.591436,48.372159]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.58866,48.373285]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.583308,48.373956]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.580321,48.374376]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.578795,48.373192]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.57976,48.372804]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.573729,48.37386]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.573831,48.373881]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.535819,48.379709]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.526818,48.376731]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.504105,48.39199]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.488326,48.391525]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.484825,48.389503]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.484047,48.388937]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.242051,48.328092]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.240073,48.326913]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.181425,48.296485]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.178264,48.29413]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.31683,48.245903]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.433623,48.050729]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.459804,48.008878]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.345014,47.768612]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.322937,47.789021]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.28299,47.801201]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.278997,47.801973]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.278943,47.8022]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.278822,47.803331]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.278768,47.803238]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.279015,47.803483]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.34694,47.761875]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.272971,47.804418]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.273212,47.804364]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.267974,47.803858]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.24283,47.764959]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.240129,47.762182]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.071951,47.650543]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.072282,47.650458]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.098868,47.433986]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.167268,47.412327]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.168056,47.339746]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.163041,47.318119]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.192561,47.289802]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.956199,47.359745]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.955829,47.359645]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.954712,47.3594]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.192567,47.289908]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.93736,47.353863]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.790679,47.278835]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.782207,47.274536]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.774646,47.270907]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.769836,47.268024]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.685226,47.244673]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.671628,47.236537]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.651283,47.22731]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.643827,47.223931]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.612242,47.217386]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.586017,47.226975]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.586706,47.250131]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.576315,47.25322]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.684493,48.110143]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.683715,48.110168]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.683846,48.109876]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.682951,48.109887]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.681122,48.110113]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.679729,48.110086]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.680126,48.110075]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.680287,48.110075]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.680206,48.110071]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.683814,48.110211]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.682066,48.110107]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.678827,48.111651]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.460613,48.121274]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.45682,48.120217]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.17295,48.107967]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.172782,48.107865]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.189173,48.116479]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.189281,48.116575]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.223048,48.122518]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.501812,48.215902]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.50164,48.215973]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.409892,48.258941]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.409748,48.258984]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.199672,48.352517]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.19958,48.352656]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.198797,48.353212]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.198717,48.353305]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.198711,48.35339]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.199044,48.353633]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.198888,48.353522]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.199253,48.3537]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.199462,48.353839]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.199908,48.354064]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.201222,48.354748]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.20127,48.35472]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.216779,48.353194]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.216913,48.353233]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.028705,48.459455]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.028844,48.459597]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.029102,48.45964]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.060339,48.452222]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.060511,48.452204]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.06161,48.452001]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.061728,48.451952]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.061905,48.451934]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.151824,48.439362]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.490946,48.472715]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.501203,48.4729]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.507039,48.467978]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.511688,48.471807]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.516234,48.471285]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.630566,48.489541]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.630668,48.489524]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.672328,48.485211]}},{"type":"Feature","properties":{"type":"2"},"geometry":{"type":"Point","coordinates":[-2.676373,48.485111]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.683641,48.485666]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.683829,48.48568]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.760489,48.507584]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.760573,48.507458]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.771795,48.508722]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.771934,48.50879]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.771918,48.508971]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.764778,48.513957]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.980095,48.632824]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.980009,48.632901]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.931435,48.675816]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.931322,48.67577]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.049248,48.776018]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.049291,48.775951]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.049414,48.775905]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.125331,48.559412]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.125181,48.559366]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.125042,48.55938]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.123534,48.5553]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.123652,48.555251]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.138667,48.545205]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.146403,48.548891]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.146462,48.54899]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.146752,48.549026]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.173171,48.545411]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.173456,48.545318]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.160071,48.563331]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.159519,48.563424]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.158816,48.563562]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.157915,48.563718]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.157239,48.563796]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.15645,48.563757]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.156075,48.563725]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.155914,48.563715]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.155721,48.563733]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.138834,48.545201]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.680288,48.109899]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.681131,48.109896]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.16185,47.326498]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.758518,48.511196]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.759151,48.510826]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.758539,48.511054]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.759478,48.510602]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.759129,48.510954]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.757032,48.514263]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.533623,47.199183]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.534899,47.19985]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.534508,47.199522]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.534572,47.19966]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.539416,47.206807]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.536831,47.203666]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.535999,47.202627]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.533247,47.199274]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.534197,47.200436]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.534175,47.200502]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.533499,47.200061]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.533574,47.19989]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.53491,47.199784]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.544421,47.210389]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.548691,47.208957]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.544282,47.21044]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.554877,47.192804]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.555853,47.194575]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.561679,47.199846]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.562237,47.204176]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.562017,47.204045]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.562634,47.204533]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.148275,48.560754]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.161037,48.564847]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.159953,48.701016]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.187905,47.979114]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.178807,47.980385]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.160664,47.977494]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.156694,47.962047]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.160031,47.957801]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.153465,47.935617]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.136953,47.938549]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.823394,48.574457]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.823399,48.574354]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.264896,48.45999]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-4.266327,48.456919]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.651125,47.228457]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-2.112679,47.321887]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-1.616364,48.117857]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[-3.148457,48.56085]}}],"_umap_options":{"displayOnLoad":true,"browsable":true,"remoteData":{"from":"15"},"name":"points_coupe_trace","description":"Points à placer le plus précisément possible (zoom 18 minimum) pour couper le réseau de routage.","iconClass":"Circle","color":"Black","id":861810}} \ No newline at end of file diff --git a/scripts/backup/phase_2/README.txt b/scripts/backup/phase_2/README.txt deleted file mode 100644 index f634067..0000000 --- a/scripts/backup/phase_2/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -ici les fichiers sauvegardés automatiquement - diff --git a/scripts/backup/phase_5/README.txt b/scripts/backup/phase_5/README.txt deleted file mode 100644 index f634067..0000000 --- a/scripts/backup/phase_5/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -ici les fichiers sauvegardés automatiquement - diff --git a/scripts/data/README.md b/scripts/data/README.md deleted file mode 100644 index c142e07..0000000 --- a/scripts/data/README.md +++ /dev/null @@ -1 +0,0 @@ -Ce dossier contient les fichiers de données nécessaires pour les échanges ou diffusion. \ No newline at end of file