Skip to content

Instantly share code, notes, and snippets.

@ThomasG77
Created April 8, 2024 11:17
Show Gist options
  • Save ThomasG77/2b06db34a793044561452395248fc9f3 to your computer and use it in GitHub Desktop.
Save ThomasG77/2b06db34a793044561452395248fc9f3 to your computer and use it in GitHub Desktop.
Generate daily stations from meteo france data

Récupération des stations quotidiennes depuis les données Météo France

import json
import urllib.request
from glob import glob
import pandas as pd
import geopandas

dataset_id = '6569b51ae64326786e4e8e1a'
url = f'https://www.data.gouv.fr/api/1/datasets/{dataset_id}/'

with urllib.request.urlopen(url) as resp:
    json_content = json.load(resp)

urls = [resource.get('url') for resource in json_content.get('resources') if 'RR-T-Vent' in resource.get('url') and resource.get('type') != 'documentation']

mydict = {}
for url, dep in [[url, url.split('/')[-1].split('_')[1]] for url in urls]:
    if dep not in mydict:
        mydict[dep] = []
    mydict[dep].append(url)

for dep,values in mydict.items():
    frames = [pd.read_csv(url, compression='gzip', sep=';', quotechar='"') for url in values]
    df = pd.concat(frames)
    stations = df[['NUM_POSTE', 'NOM_USUEL', 'LAT', 'LON', 'ALTI', 'AAAAMMJJ']]
    stations['AAAAMMJJ'] = pd.to_datetime(stations['AAAAMMJJ'], format = '%Y%m%d')
    stations['MIN_DATE'] = stations.groupby(['NUM_POSTE'])['AAAAMMJJ'].transform('min')
    stations['MAX_DATE'] = stations.groupby(['NUM_POSTE'])['AAAAMMJJ'].transform('max')
    stations.drop(columns=['AAAAMMJJ'], inplace=True)
    stations.reset_index().drop_duplicates('NUM_POSTE').drop(columns=['index']).to_csv(f'stations-RR-T-Vent-dep-{dep}.csv', index=False)

files_stations_rr_t_vent = glob('stations-RR-T-Vent-dep-*.csv')
frames_stations_rr_t_vent = [pd.read_csv(input_file) for input_file in files_stations_rr_t_vent]
df_stations_rr_t_vent = pd.concat(frames_stations_rr_t_vent)
gdf_stations_rr_t_vent = geopandas.GeoDataFrame(
    df_stations_rr_t_vent, geometry=geopandas.points_from_xy(df_stations_rr_t_vent.LON, df_stations_rr_t_vent.LAT), crs="EPSG:4326"
)
gdf_stations_rr_t_vent.to_file('stations_rr_t_vent.geojson', driver='GeoJSON')
import json
import urllib.request
from glob import glob
import pandas as pd
import geopandas
dataset_id = '6569b51ae64326786e4e8e1a'
url = f'https://www.data.gouv.fr/api/1/datasets/{dataset_id}/'
with urllib.request.urlopen(url) as resp:
json_content = json.load(resp)
urls = [resource.get('url') for resource in json_content.get('resources') if 'RR-T-Vent' in resource.get('url') and resource.get('type') != 'documentation']
mydict = {}
for url, dep in [[url, url.split('/')[-1].split('_')[1]] for url in urls]:
if dep not in mydict:
mydict[dep] = []
mydict[dep].append(url)
for dep,values in mydict.items():
frames = [pd.read_csv(url, compression='gzip', sep=';', quotechar='"') for url in values]
df = pd.concat(frames)
stations = df[['NUM_POSTE', 'NOM_USUEL', 'LAT', 'LON', 'ALTI', 'AAAAMMJJ']]
stations['AAAAMMJJ'] = pd.to_datetime(stations['AAAAMMJJ'], format = '%Y%m%d')
stations['MIN_DATE'] = stations.groupby(['NUM_POSTE'])['AAAAMMJJ'].transform('min')
stations['MAX_DATE'] = stations.groupby(['NUM_POSTE'])['AAAAMMJJ'].transform('max')
stations.drop(columns=['AAAAMMJJ'], inplace=True)
stations.reset_index().drop_duplicates('NUM_POSTE').drop(columns=['index']).to_csv(f'stations-RR-T-Vent-dep-{dep}.csv', index=False)
files_stations_rr_t_vent = glob('stations-RR-T-Vent-dep-*.csv')
frames_stations_rr_t_vent = [pd.read_csv(input_file) for input_file in files_stations_rr_t_vent]
df_stations_rr_t_vent = pd.concat(frames_stations_rr_t_vent)
gdf_stations_rr_t_vent = geopandas.GeoDataFrame(
df_stations_rr_t_vent, geometry=geopandas.points_from_xy(df_stations_rr_t_vent.LON, df_stations_rr_t_vent.LAT), crs="EPSG:4326"
)
gdf_stations_rr_t_vent.to_file('stations_rr_t_vent.geojson', driver='GeoJSON')
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "NUM_POSTE": 31006001, "NOM_USUEL": "ALBIAC AGGLOMERATION", "LAT": 43.551667, "LON": 1.78, "ALTI": 289, "MIN_DATE": "1881-02-01", "MAX_DATE": "1903-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.78, 43.551667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31027001, "NOM_USUEL": "AURIBAIL AGGLOMERATION", "LAT": 43.351667, "LON": 1.381667, "ALTI": 250, "MIN_DATE": "1904-09-01", "MAX_DATE": "1924-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.381667, 43.351667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31028001, "NOM_USUEL": "AURIGNAC", "LAT": 43.216667, "LON": 0.866667, "ALTI": 390, "MIN_DATE": "1872-01-01", "MAX_DATE": "1993-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.866667, 43.216667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31042001, "NOM_USUEL": "BAGNERES-DE-LUC", "LAT": 42.8005, "LON": 0.597833, "ALTI": 620, "MIN_DATE": "1928-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.597833, 42.8005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31042002, "NOM_USUEL": "BAGNERES-DE-LUCHON-BRG RAVI", "LAT": 42.791667, "LON": 0.593333, "ALTI": 820, "MIN_DATE": "1944-11-01", "MAX_DATE": "1974-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.593333, 42.791667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31042004, "NOM_USUEL": "BAGNERE-HA", "LAT": 42.791667, "LON": 0.593333, "ALTI": 1872, "MIN_DATE": "1946-04-01", "MAX_DATE": "1963-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.593333, 42.791667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31042005, "NOM_USUEL": "BAGNERES-DE-LUCHON", "LAT": 42.791667, "LON": 0.593333, "ALTI": 635, "MIN_DATE": "1946-01-01", "MAX_DATE": "1960-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.593333, 42.791667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31042008, "NOM_USUEL": "BAGNERES-DE-LUCHON JOUEOU", "LAT": 42.791667, "LON": 0.593333, "ALTI": 1000, "MIN_DATE": "1902-06-01", "MAX_DATE": "1905-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.593333, 42.791667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31042009, "NOM_USUEL": "BAGNERES-DE-LUCHON-AGG", "LAT": 42.791667, "LON": 0.593333, "ALTI": 623, "MIN_DATE": "1872-01-01", "MAX_DATE": "1900-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.593333, 42.791667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31069001, "NOM_USUEL": "TOULOUSE-BLAGNAC", "LAT": 43.621, "LON": 1.378833, "ALTI": 151, "MIN_DATE": "1947-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.378833, 43.621 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31070001, "NOM_USUEL": "BLAJAN", "LAT": 43.261667, "LON": 0.645, "ALTI": 358, "MIN_DATE": "1899-03-01", "MAX_DATE": "1999-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.645, 43.261667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31070002, "NOM_USUEL": "BLAJAN", "LAT": 43.26, "LON": 0.643333, "ALTI": 356, "MIN_DATE": "1946-09-01", "MAX_DATE": "1950-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.643333, 43.26 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31080001, "NOM_USUEL": "BOULOGNE-SUR-GESSE", "LAT": 43.29, "LON": 0.646667, "ALTI": 320, "MIN_DATE": "1881-02-01", "MAX_DATE": "1884-02-29" }, "geometry": { "type": "Point", "coordinates": [ 0.646667, 43.29 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31098002, "NOM_USUEL": "CADOURS AGGLOMERATION", "LAT": 43.73, "LON": 1.05, "ALTI": 250, "MIN_DATE": "1881-07-01", "MAX_DATE": "1901-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.05, 43.73 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31107001, "NOM_USUEL": "CARBONNE AGGLOMERATION", "LAT": 43.293333, "LON": 1.225, "ALTI": 210, "MIN_DATE": "1917-11-01", "MAX_DATE": "1920-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.225, 43.293333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31108001, "NOM_USUEL": "CARDEILHAC BOURG", "LAT": 43.198333, "LON": 0.683333, "ALTI": 447, "MIN_DATE": "1930-07-01", "MAX_DATE": "1939-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.683333, 43.198333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31123001, "NOM_USUEL": "CASTILLON-DE-LARBOUST-E-F", "LAT": 42.805, "LON": 0.533333, "ALTI": 960, "MIN_DATE": "1922-01-01", "MAX_DATE": "1938-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.533333, 42.805 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31127001, "NOM_USUEL": "CAUBOUS AGGLOMERATION", "LAT": 42.851667, "LON": 0.523333, "ALTI": 1230, "MIN_DATE": "1905-01-01", "MAX_DATE": "1933-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.523333, 42.851667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31128001, "NOM_USUEL": "CAUJAC BOURG", "LAT": 43.298333, "LON": 1.47, "ALTI": 200, "MIN_DATE": "1929-07-01", "MAX_DATE": "1940-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.47, 43.298333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31135001, "NOM_USUEL": "CAZERES AGGLOMERATION", "LAT": 43.206667, "LON": 1.085, "ALTI": 240, "MIN_DATE": "1899-03-01", "MAX_DATE": "1915-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.085, 43.206667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31157001, "NOM_USUEL": "TOULOUSE-FRANCAZAL", "LAT": 43.540333, "LON": 1.372667, "ALTI": 164, "MIN_DATE": "1922-06-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.372667, 43.540333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31179001, "NOM_USUEL": "LE FAGET AGGLOMERATION", "LAT": 43.566667, "LON": 1.825, "ALTI": 262, "MIN_DATE": "1899-01-01", "MAX_DATE": "1911-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.825, 43.566667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31190003, "NOM_USUEL": "FOS AGGLOMERATION", "LAT": 42.873333, "LON": 0.735, "ALTI": 550, "MIN_DATE": "1881-02-01", "MAX_DATE": "1911-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.735, 42.873333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31193001, "NOM_USUEL": "LE FOUSSERET AGGLOMERATION", "LAT": 43.28, "LON": 1.065, "ALTI": 319, "MIN_DATE": "1883-05-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.065, 43.28 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31239003, "NOM_USUEL": "L'ISLE-EN-DODON AGGLOMERATION", "LAT": 43.381667, "LON": 0.836667, "ALTI": 198, "MIN_DATE": "1881-02-01", "MAX_DATE": "1884-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.836667, 43.381667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31241001, "NOM_USUEL": "IZAUT-DE-L'HOTEL AGGLOMERATION", "LAT": 43.016667, "LON": 0.755, "ALTI": 300, "MIN_DATE": "1883-01-01", "MAX_DATE": "1911-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.755, 43.016667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31242001, "NOM_USUEL": "JURVIELLE AGGLOMERATION", "LAT": 42.818333, "LON": 0.486667, "ALTI": 1290, "MIN_DATE": "1899-03-01", "MAX_DATE": "1904-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.486667, 42.818333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31245001, "NOM_USUEL": "JUZET-D'IZAUT", "LAT": 42.966667, "LON": 0.75, "ALTI": 575, "MIN_DATE": "1902-05-01", "MAX_DATE": "1999-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.75, 42.966667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31277001, "NOM_USUEL": "LASSERRE AGGLOMERATION", "LAT": 43.64, "LON": 1.168333, "ALTI": 173, "MIN_DATE": "1899-03-01", "MAX_DATE": "1914-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.168333, 43.64 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31291001, "NOM_USUEL": "LEGUEVIN AGGLOMERATION", "LAT": 43.6, "LON": 1.233333, "ALTI": 195, "MIN_DATE": "1881-02-01", "MAX_DATE": "1901-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.233333, 43.6 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31335001, "NOM_USUEL": "MAYREGNE BOURG", "LAT": 42.845, "LON": 0.54, "ALTI": 1204, "MIN_DATE": "1931-06-01", "MAX_DATE": "1952-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.54, 42.845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31344002, "NOM_USUEL": "MIRAMONT-DE-COMMINGES", "LAT": 43.095, "LON": 0.745, "ALTI": 354, "MIN_DATE": "1929-01-01", "MAX_DATE": "1940-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.745, 43.095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31390001, "NOM_USUEL": "MONTREJEAU AGGLOMERATION", "LAT": 43.086667, "LON": 0.57, "ALTI": 462, "MIN_DATE": "1872-02-01", "MAX_DATE": "1878-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.57, 43.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31396001, "NOM_USUEL": "NAILLOUX AGGLOMERATION", "LAT": 43.356667, "LON": 1.623333, "ALTI": 285, "MIN_DATE": "1881-02-01", "MAX_DATE": "1899-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.623333, 43.356667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31403001, "NOM_USUEL": "ONDES", "LAT": 43.783333, "LON": 1.333333, "ALTI": 108, "MIN_DATE": "1931-01-01", "MAX_DATE": "1998-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.333333, 43.783333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31404002, "NOM_USUEL": "OO REGULATRICE DU LAC D'OO", "LAT": 42.798333, "LON": 0.506667, "ALTI": 1450, "MIN_DATE": "1933-12-01", "MAX_DATE": "1961-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.506667, 42.798333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31404003, "NOM_USUEL": "OO AGGLOMERATION", "LAT": 42.798333, "LON": 0.506667, "ALTI": 1290, "MIN_DATE": "1899-03-01", "MAX_DATE": "1914-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.506667, 42.798333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31417001, "NOM_USUEL": "PIBRAC AGGLOMERATION", "LAT": 43.618333, "LON": 1.285, "ALTI": 190, "MIN_DATE": "1899-01-01", "MAX_DATE": "1906-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.285, 43.618333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31427001, "NOM_USUEL": "POINTIS-INARD", "LAT": 43.1, "LON": 0.8, "ALTI": 350, "MIN_DATE": "1931-06-01", "MAX_DATE": "2001-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.8, 43.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31451001, "NOM_USUEL": "REVEL", "LAT": 43.4375, "LON": 2.018667, "ALTI": 338, "MIN_DATE": "1908-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.018667, 43.4375 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31454003, "NOM_USUEL": "RIEUMES AGGLOMERATION", "LAT": 43.411667, "LON": 1.12, "ALTI": 280, "MIN_DATE": "1883-01-01", "MAX_DATE": "1901-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.12, 43.411667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31483002, "NOM_USUEL": "SAINT-GAUDENS AGGLOMERATION", "LAT": 43.108333, "LON": 0.723333, "ALTI": 406, "MIN_DATE": "1880-04-01", "MAX_DATE": "1957-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.723333, 43.108333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31513001, "NOM_USUEL": "SAINT-PLANCARD AGGLOMERATION", "LAT": 43.171667, "LON": 0.575, "ALTI": 360, "MIN_DATE": "1899-03-01", "MAX_DATE": "1947-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.575, 43.171667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31539001, "NOM_USUEL": "SEDEILHAC ROUTE DE LOUDET", "LAT": 43.151667, "LON": 0.555, "ALTI": 360, "MIN_DATE": "1947-05-01", "MAX_DATE": "1980-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.555, 43.151667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31547001, "NOM_USUEL": "SEYSSES BOURG", "LAT": 43.498333, "LON": 1.313333, "ALTI": 320, "MIN_DATE": "1926-03-01", "MAX_DATE": "1926-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.313333, 43.498333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31555003, "NOM_USUEL": "TOULOUSE ECOLE NORMALE", "LAT": 43.576667, "LON": 1.456667, "ALTI": 147, "MIN_DATE": "1867-01-01", "MAX_DATE": "1928-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.456667, 43.576667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31555009, "NOM_USUEL": "TOULOUSE PONTS-ET-CHAUSSEES", "LAT": 43.6, "LON": 1.45, "ALTI": 145, "MIN_DATE": "1872-01-01", "MAX_DATE": "1879-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.45, 43.6 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31555012, "NOM_USUEL": "TOULOUSE CANAL", "LAT": 43.5985, "LON": 1.456667, "ALTI": 155, "MIN_DATE": "1809-01-01", "MAX_DATE": "1899-05-28" }, "geometry": { "type": "Point", "coordinates": [ 1.456667, 43.5985 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31555013, "NOM_USUEL": "TOULOUSE-MONTAUDRAN", "LAT": 43.566667, "LON": 1.483333, "ALTI": 147, "MIN_DATE": "1920-10-04", "MAX_DATE": "1922-06-13" }, "geometry": { "type": "Point", "coordinates": [ 1.483333, 43.566667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31555016, "NOM_USUEL": "TOULOUSE OBSERVATOIRE JOLIMONT", "LAT": 43.611667, "LON": 1.463333, "ALTI": 195, "MIN_DATE": "1847-01-01", "MAX_DATE": "1984-10-31" }, "geometry": { "type": "Point", "coordinates": [ 1.463333, 43.611667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31573002, "NOM_USUEL": "VERFEIL AGGLOMERATION", "LAT": 43.656667, "LON": 1.661667, "ALTI": 225, "MIN_DATE": "1881-02-01", "MAX_DATE": "1889-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.661667, 43.656667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31582001, "NOM_USUEL": "VILLEFRANCHE-L", "LAT": 43.383333, "LON": 1.733333, "ALTI": 190, "MIN_DATE": "1899-01-01", "MAX_DATE": "1996-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.733333, 43.383333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31587001, "NOM_USUEL": "VILLENEUVE-LES-BOULOC", "LAT": 43.77, "LON": 1.423333, "ALTI": 132, "MIN_DATE": "1883-01-01", "MAX_DATE": "1911-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.423333, 43.77 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31011001, "NOM_USUEL": "ARBAS", "LAT": 42.9965, "LON": 0.908833, "ALTI": 405, "MIN_DATE": "1968-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.908833, 42.9965 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31024001, "NOM_USUEL": "AURAGNE", "LAT": 43.383333, "LON": 1.5, "ALTI": 240, "MIN_DATE": "1964-06-02", "MAX_DATE": "1988-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.5, 43.383333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31024002, "NOM_USUEL": "AURAGNE PONTIES", "LAT": 43.387667, "LON": 1.522667, "ALTI": 240, "MIN_DATE": "1988-10-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.522667, 43.387667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31033001, "NOM_USUEL": "AUTERIVE COLLEGE", "LAT": 43.353333, "LON": 1.48, "ALTI": 188, "MIN_DATE": "1979-01-01", "MAX_DATE": "1986-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.48, 43.353333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31035001, "NOM_USUEL": "AUZEVILLE-TOLOSANE-INRA", "LAT": 43.528833, "LON": 1.503667, "ALTI": 150, "MIN_DATE": "2002-05-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.503667, 43.528833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31037002, "NOM_USUEL": "AVIGNONET-LAURAGAIS", "LAT": 43.343167, "LON": 1.805667, "ALTI": 193, "MIN_DATE": "2022-03-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.805667, 43.343167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31042012, "NOM_USUEL": "LUCHON", "LAT": 42.8015, "LON": 0.600167, "ALTI": 618, "MIN_DATE": "1994-07-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.600167, 42.8015 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31042400, "NOM_USUEL": "Superbagneres", "LAT": 42.7705, "LON": 0.576333, "ALTI": 1763, "MIN_DATE": "1986-01-13", "MAX_DATE": "2024-03-25" }, "geometry": { "type": "Point", "coordinates": [ 0.576333, 42.7705 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31042404, "NOM_USUEL": "Superbagneres Hotel", "LAT": 42.77, "LON": 0.58, "ALTI": 1800, "MIN_DATE": "1997-11-19", "MAX_DATE": "1998-09-20" }, "geometry": { "type": "Point", "coordinates": [ 0.58, 42.77 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31044001, "NOM_USUEL": "BALMA", "LAT": 43.613333, "LON": 1.4905, "ALTI": 140, "MIN_DATE": "1993-01-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.4905, 43.613333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31050001, "NOM_USUEL": "BEAUCHALOT /SA", "LAT": 43.115, "LON": 0.866667, "ALTI": 400, "MIN_DATE": "1988-04-04", "MAX_DATE": "1994-05-18" }, "geometry": { "type": "Point", "coordinates": [ 0.866667, 43.115 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31052001, "NOM_USUEL": "BEAUMONT-SUR-LEZE PELLEPOIX", "LAT": 43.38, "LON": 1.356667, "ALTI": 205, "MIN_DATE": "1957-04-01", "MAX_DATE": "1963-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.356667, 43.38 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31070004, "NOM_USUEL": "BLAJAN", "LAT": 43.2565, "LON": 0.643833, "ALTI": 325, "MIN_DATE": "1999-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.643833, 43.2565 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31083001, "NOM_USUEL": "BOUSSAN", "LAT": 43.243833, "LON": 0.888167, "ALTI": 287, "MIN_DATE": "1993-03-01", "MAX_DATE": "2018-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.888167, 43.243833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31085400, "NOM_USUEL": "Boutx le Mourtis", "LAT": 42.911833, "LON": 0.768167, "ALTI": 1456, "MIN_DATE": "1978-12-17", "MAX_DATE": "2024-03-01" }, "geometry": { "type": "Point", "coordinates": [ 0.768167, 42.911833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31098001, "NOM_USUEL": "CADOURS", "LAT": 43.728333, "LON": 1.053, "ALTI": 233, "MIN_DATE": "1966-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.053, 43.728333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31116001, "NOM_USUEL": "CASTELGINEST", "LAT": 43.686667, "LON": 1.438333, "ALTI": 131, "MIN_DATE": "1984-03-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.438333, 43.686667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31123400, "NOM_USUEL": "MAUPAS-NIVOSE", "LAT": 42.7145, "LON": 0.5495, "ALTI": 2417, "MIN_DATE": "2000-09-26", "MAX_DATE": "2024-01-07" }, "geometry": { "type": "Point", "coordinates": [ 0.5495, 42.7145 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31141001, "NOM_USUEL": "CIADOUX VILLAGE", "LAT": 43.26, "LON": 0.736667, "ALTI": 350, "MIN_DATE": "1950-08-01", "MAX_DATE": "1966-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.736667, 43.26 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31144001, "NOM_USUEL": "CIERP-GAUD", "LAT": 42.911667, "LON": 0.6375, "ALTI": 500, "MIN_DATE": "1952-03-01", "MAX_DATE": "2013-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.6375, 42.911667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31145001, "NOM_USUEL": "CINTEGABELLE CROIX DE PUEL", "LAT": 43.311667, "LON": 1.531667, "ALTI": 196, "MIN_DATE": "1966-02-01", "MAX_DATE": "1985-10-31" }, "geometry": { "type": "Point", "coordinates": [ 1.531667, 43.311667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31147001, "NOM_USUEL": "CLARAC", "LAT": 43.106, "LON": 0.617333, "ALTI": 401, "MIN_DATE": "1994-05-18", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.617333, 43.106 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31178001, "NOM_USUEL": "FABAS", "LAT": 43.3145, "LON": 0.9335, "ALTI": 330, "MIN_DATE": "2004-08-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.9335, 43.3145 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31190001, "NOM_USUEL": "FOS", "LAT": 42.871167, "LON": 0.739333, "ALTI": 550, "MIN_DATE": "1966-02-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.739333, 42.871167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31221400, "NOM_USUEL": "Les Agudes", "LAT": 42.786833, "LON": 0.477667, "ALTI": 1569, "MIN_DATE": "1988-01-20", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.477667, 42.786833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31239001, "NOM_USUEL": "ISLE EN DODON", "LAT": 43.375, "LON": 0.835, "ALTI": 200, "MIN_DATE": "1970-05-01", "MAX_DATE": "2004-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.835, 43.375 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31239002, "NOM_USUEL": "L'ISLE-EN-DODON EDF - BOURG", "LAT": 43.381667, "LON": 0.836667, "ALTI": 195, "MIN_DATE": "1964-06-02", "MAX_DATE": "1966-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.836667, 43.381667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31247001, "NOM_USUEL": "LABARTHE-RIVIER", "LAT": 43.096, "LON": 0.669, "ALTI": 394, "MIN_DATE": "1975-02-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.669, 43.096 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31253001, "NOM_USUEL": "LABASTIDETTE", "LAT": 43.45, "LON": 1.233333, "ALTI": 190, "MIN_DATE": "1964-06-02", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.233333, 43.45 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31253002, "NOM_USUEL": "LABASTIDETTE GA", "LAT": 43.461167, "LON": 1.2465, "ALTI": 186, "MIN_DATE": "1989-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.2465, 43.461167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31258001, "NOM_USUEL": "LACAUGNE", "LAT": 43.292333, "LON": 1.284167, "ALTI": 257, "MIN_DATE": "2006-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.284167, 43.292333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31264001, "NOM_USUEL": "LAGRACE-DIEU", "LAT": 43.344667, "LON": 1.423, "ALTI": 235, "MIN_DATE": "2008-09-16", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.423, 43.344667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31271001, "NOM_USUEL": "LANTA", "LAT": 43.572167, "LON": 1.646333, "ALTI": 212, "MIN_DATE": "1971-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.646333, 43.572167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31272001, "NOM_USUEL": "LAPEYRERE", "LAT": 43.206833, "LON": 1.296833, "ALTI": 347, "MIN_DATE": "1993-01-01", "MAX_DATE": "2013-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.296833, 43.206833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31281001, "NOM_USUEL": "LAUNAC", "LAT": 43.742, "LON": 1.182833, "ALTI": 178, "MIN_DATE": "1963-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.182833, 43.742 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31299001, "NOM_USUEL": "MURET-LHERM", "LAT": 43.4515, "LON": 1.262, "ALTI": 189, "MIN_DATE": "1996-09-17", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.262, 43.4515 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31305001, "NOM_USUEL": "LOUDET", "LAT": 43.147833, "LON": 0.573333, "ALTI": 500, "MIN_DATE": "1981-12-01", "MAX_DATE": "2020-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.573333, 43.147833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31344001, "NOM_USUEL": "MIRAMONT-DE-COMMINGES BOURG", "LAT": 43.095, "LON": 0.745, "ALTI": 352, "MIN_DATE": "1959-01-01", "MAX_DATE": "1965-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.745, 43.095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31349001, "NOM_USUEL": "MONDAVEZAN", "LAT": 43.223333, "LON": 1.07, "ALTI": 250, "MIN_DATE": "1985-05-01", "MAX_DATE": "2007-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.07, 43.223333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31374001, "NOM_USUEL": "MONTESQUIEU-LAURAGAIS", "LAT": 43.416, "LON": 1.628167, "ALTI": 240, "MIN_DATE": "1997-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.628167, 43.416 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31375001, "NOM_USUEL": "MONTESQUIEU-VOLVESTRE", "LAT": 43.208333, "LON": 1.23, "ALTI": 226, "MIN_DATE": "1973-06-01", "MAX_DATE": "1985-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.23, 43.208333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31380001, "NOM_USUEL": "MONTGEARD ROQUEFOULET", "LAT": 43.336667, "LON": 1.633333, "ALTI": 250, "MIN_DATE": "1973-06-01", "MAX_DATE": "1978-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.633333, 43.336667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31403002, "NOM_USUEL": "ONDES", "LAT": 43.778333, "LON": 1.321333, "ALTI": 109, "MIN_DATE": "1988-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.321333, 43.778333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31404001, "NOM_USUEL": "OO", "LAT": 42.794167, "LON": 0.504667, "ALTI": 969, "MIN_DATE": "1961-09-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.504667, 42.794167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31406001, "NOM_USUEL": "PALAMINY USINE ELECTRIQUE", "LAT": 43.203333, "LON": 1.07, "ALTI": 239, "MIN_DATE": "1963-10-01", "MAX_DATE": "1975-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.07, 43.203333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31406002, "NOM_USUEL": "PALAMINY", "LAT": 43.2, "LON": 1.05, "ALTI": 243, "MIN_DATE": "2002-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.05, 43.2 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31416001, "NOM_USUEL": "PEYSSIES CAVE COOPERATIVE", "LAT": 43.321667, "LON": 1.178333, "ALTI": 216, "MIN_DATE": "1963-06-01", "MAX_DATE": "1972-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.178333, 43.321667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31426001, "NOM_USUEL": "POINTIS-DE-RIVIERE", "LAT": 43.086667, "LON": 0.618333, "ALTI": 410, "MIN_DATE": "1952-03-01", "MAX_DATE": "1975-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.618333, 43.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31431001, "NOM_USUEL": "PORTET-D'ASPET BOURG", "LAT": 42.94, "LON": 0.866667, "ALTI": 800, "MIN_DATE": "1955-02-03", "MAX_DATE": "1956-12-28" }, "geometry": { "type": "Point", "coordinates": [ 0.866667, 42.94 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31435001, "NOM_USUEL": "POUCHARRAMET/SA", "LAT": 43.416667, "LON": 1.183333, "ALTI": 204, "MIN_DATE": "1988-04-04", "MAX_DATE": "2002-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.183333, 43.416667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31454001, "NOM_USUEL": "RIEUMES", "LAT": 43.415167, "LON": 1.113, "ALTI": 261, "MIN_DATE": "1966-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.113, 43.415167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31476001, "NOM_USUEL": "SAINT-ELIX-LE-CHATEAU", "LAT": 43.278333, "LON": 1.14, "ALTI": 225, "MIN_DATE": "1963-06-01", "MAX_DATE": "1984-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.14, 43.278333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31478001, "NOM_USUEL": "ST-FELIX-LAURAGAIS", "LAT": 43.441667, "LON": 1.881167, "ALTI": 330, "MIN_DATE": "2006-03-03", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.881167, 43.441667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31483001, "NOM_USUEL": "SAINT-GAUDENS COLLEGE AGRICOLE", "LAT": 43.108333, "LON": 0.723333, "ALTI": 398, "MIN_DATE": "1971-03-01", "MAX_DATE": "1977-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.723333, 43.108333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31497001, "NOM_USUEL": "SAINT-LOUP-CAMMAS", "LAT": 43.696667, "LON": 1.48, "ALTI": 200, "MIN_DATE": "1964-02-01", "MAX_DATE": "1971-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.48, 43.696667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31502001, "NOM_USUEL": "ST-MARCET", "LAT": 43.207, "LON": 0.748667, "ALTI": 348, "MIN_DATE": "2006-07-01", "MAX_DATE": "2018-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.748667, 43.207 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31508001, "NOM_USUEL": "ST-PAUL-D'OUEIL", "LAT": 42.828333, "LON": 0.55, "ALTI": 1115, "MIN_DATE": "1955-02-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.55, 42.828333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31508400, "NOM_USUEL": "St Paul d Oueil", "LAT": 42.828333, "LON": 0.55, "ALTI": 1107, "MIN_DATE": "1998-12-15", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 0.55, 42.828333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31517001, "NOM_USUEL": "ST-SULPICE/LEZE", "LAT": 43.316667, "LON": 1.3, "ALTI": 200, "MIN_DATE": "1966-02-01", "MAX_DATE": "2003-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.3, 43.316667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31521001, "NOM_USUEL": "SALEICH", "LAT": 43.027167, "LON": 0.966, "ALTI": 410, "MIN_DATE": "1999-04-01", "MAX_DATE": "2008-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.966, 43.027167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31523001, "NOM_USUEL": "SALIES-DU-SALAT", "LAT": 43.105, "LON": 0.96, "ALTI": 330, "MIN_DATE": "1968-03-01", "MAX_DATE": "1972-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.96, 43.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31540001, "NOM_USUEL": "SEGREVILLE", "LAT": 43.491833, "LON": 1.7425, "ALTI": 212, "MIN_DATE": "1961-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.7425, 43.491833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31555001, "NOM_USUEL": "TOULOUSE JARDIN BOTANIQUE", "LAT": 43.588333, "LON": 1.453333, "ALTI": 144, "MIN_DATE": "1952-05-11", "MAX_DATE": "1968-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.453333, 43.588333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31555002, "NOM_USUEL": "TOULOUSE BOULEVARD DES MINIMES", "LAT": 43.61, "LON": 1.448333, "ALTI": 140, "MIN_DATE": "1959-01-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.448333, 43.61 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31569001, "NOM_USUEL": "VAUDREUILLE", "LAT": 43.425, "LON": 1.983333, "ALTI": 436, "MIN_DATE": "1964-06-01", "MAX_DATE": "1982-10-31" }, "geometry": { "type": "Point", "coordinates": [ 1.983333, 43.425 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31573001, "NOM_USUEL": "VERFEIL", "LAT": 43.645167, "LON": 1.661167, "ALTI": 158, "MIN_DATE": "1972-06-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.661167, 43.645167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31579001, "NOM_USUEL": "VILLARIES", "LAT": 43.743667, "LON": 1.481667, "ALTI": 135, "MIN_DATE": "1973-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.481667, 43.743667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31582003, "NOM_USUEL": "VILLEFRANCHE/SA", "LAT": 43.406667, "LON": 1.703333, "ALTI": 170, "MIN_DATE": "1990-06-21", "MAX_DATE": "2004-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.703333, 43.406667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31583001, "NOM_USUEL": "VILLEMATIER", "LAT": 43.8275, "LON": 1.475833, "ALTI": 115, "MIN_DATE": "1994-01-01", "MAX_DATE": "2016-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.475833, 43.8275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31584001, "NOM_USUEL": "VILLEMUR/TARN", "LAT": 43.853333, "LON": 1.483333, "ALTI": 100, "MIN_DATE": "1962-06-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.483333, 43.853333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 31585001, "NOM_USUEL": "VILLENEUVE-DE-RIVIERE JUNKASSA", "LAT": 43.121667, "LON": 0.666667, "ALTI": 380, "MIN_DATE": "1959-03-01", "MAX_DATE": "1974-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.666667, 43.121667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821001, "NOM_USUEL": "LA TONTOUTA", "LAT": -22.017333, "LON": 166.222333, "ALTI": 37, "MIN_DATE": "1949-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.222333, -22.017333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98801001, "NOM_USUEL": "BELEP AEROD.", "LAT": -19.719833, "LON": 163.661, "ALTI": 88, "MIN_DATE": "1962-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 163.661, -19.719833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98801002, "NOM_USUEL": "BELEP_DOUBLE", "LAT": -19.721167, "LON": 163.659667, "ALTI": 88, "MIN_DATE": "2020-01-10", "MAX_DATE": "2020-01-13" }, "geometry": { "type": "Point", "coordinates": [ 163.659667, -19.721167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802001, "NOM_USUEL": "BOULOUPARIS", "LAT": -21.874167, "LON": 166.051833, "ALTI": 8, "MIN_DATE": "1955-12-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.051833, -21.874167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802002, "NOM_USUEL": "SANDACO", "LAT": -21.896167, "LON": 166.117167, "ALTI": 12, "MIN_DATE": "1991-03-01", "MAX_DATE": "2019-02-28" }, "geometry": { "type": "Point", "coordinates": [ 166.117167, -21.896167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802003, "NOM_USUEL": "BOURAKE", "LAT": -21.9425, "LON": 165.999833, "ALTI": 53, "MIN_DATE": "2000-12-13", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.999833, -21.9425 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802004, "NOM_USUEL": "GILLES", "LAT": -21.892, "LON": 166.018667, "ALTI": 25, "MIN_DATE": "1991-01-01", "MAX_DATE": "2010-08-22" }, "geometry": { "type": "Point", "coordinates": [ 166.018667, -21.892 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802005, "NOM_USUEL": "OUAMENIE", "LAT": -21.846, "LON": 165.926, "ALTI": 57, "MIN_DATE": "1988-01-01", "MAX_DATE": "2019-12-31" }, "geometry": { "type": "Point", "coordinates": [ 165.926, -21.846 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802006, "NOM_USUEL": "LA OUENGHI", "LAT": -21.928833, "LON": 166.083333, "ALTI": 7, "MIN_DATE": "1973-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 166.083333, -21.928833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802007, "NOM_USUEL": "OUINANE", "LAT": -21.928667, "LON": 166.138667, "ALTI": 25, "MIN_DATE": "1979-01-01", "MAX_DATE": "2010-05-31" }, "geometry": { "type": "Point", "coordinates": [ 166.138667, -21.928667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802008, "NOM_USUEL": "NASSIRAH", "LAT": -21.815, "LON": 166.063167, "ALTI": 52, "MIN_DATE": "1979-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.063167, -21.815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802101, "NOM_USUEL": "BOURAKE SUD", "LAT": -21.958333, "LON": 166.001667, "ALTI": 15, "MIN_DATE": "1993-03-01", "MAX_DATE": "1997-05-31" }, "geometry": { "type": "Point", "coordinates": [ 166.001667, -21.958333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802102, "NOM_USUEL": "CAMP DES SAPINS", "LAT": -21.765, "LON": 166.174167, "ALTI": 782, "MIN_DATE": "2008-04-10", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.174167, -21.765 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98802801, "NOM_USUEL": "BOULOUPARIS_DOUBLE", "LAT": -21.874167, "LON": 166.051833, "ALTI": 8, "MIN_DATE": "2019-11-01", "MAX_DATE": "2021-10-31" }, "geometry": { "type": "Point", "coordinates": [ 166.051833, -21.874167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98803001, "NOM_USUEL": "BOURAIL", "LAT": -21.554833, "LON": 165.493833, "ALTI": 25, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.493833, -21.554833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98803002, "NOM_USUEL": "LE CAP MAORI", "LAT": -21.480667, "LON": 165.365167, "ALTI": 70, "MIN_DATE": "1976-02-01", "MAX_DATE": "2013-08-08" }, "geometry": { "type": "Point", "coordinates": [ 165.365167, -21.480667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98803003, "NOM_USUEL": "NESSADIOU", "LAT": -21.6205, "LON": 165.480167, "ALTI": 2, "MIN_DATE": "1966-10-04", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.480167, -21.6205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98803004, "NOM_USUEL": "GABE", "LAT": -21.619333, "LON": 165.4675, "ALTI": 5, "MIN_DATE": "1985-02-01", "MAX_DATE": "2011-02-28" }, "geometry": { "type": "Point", "coordinates": [ 165.4675, -21.619333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98803005, "NOM_USUEL": "POE", "LAT": -21.608, "LON": 165.399833, "ALTI": 6, "MIN_DATE": "1988-10-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.399833, -21.608 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98803006, "NOM_USUEL": "ME PARA", "LAT": -21.474167, "LON": 165.581167, "ALTI": 835, "MIN_DATE": "1991-07-01", "MAX_DATE": "2014-07-16" }, "geometry": { "type": "Point", "coordinates": [ 165.581167, -21.474167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98803101, "NOM_USUEL": "ROCHE PERCEE", "LAT": -21.613333, "LON": 165.453333, "ALTI": 4, "MIN_DATE": "2002-05-04", "MAX_DATE": "2003-03-03" }, "geometry": { "type": "Point", "coordinates": [ 165.453333, -21.613333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98804001, "NOM_USUEL": "CANALA", "LAT": -21.526333, "LON": 165.969167, "ALTI": 35, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.969167, -21.526333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98804002, "NOM_USUEL": "NAKETY", "LAT": -21.561667, "LON": 166.1, "ALTI": 494, "MIN_DATE": "1989-05-01", "MAX_DATE": "1995-01-31" }, "geometry": { "type": "Point", "coordinates": [ 166.1, -21.561667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98804003, "NOM_USUEL": "CANALA DOUBLON", "LAT": -21.5205, "LON": 165.962167, "ALTI": 42, "MIN_DATE": "2010-01-25", "MAX_DATE": "2019-10-31" }, "geometry": { "type": "Point", "coordinates": [ 165.962167, -21.5205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98805001, "NOM_USUEL": "DUMBEA", "LAT": -22.135833, "LON": 166.481167, "ALTI": 15, "MIN_DATE": "1989-05-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.481167, -22.135833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98805002, "NOM_USUEL": "KOUTIO", "LAT": -22.2135, "LON": 166.472833, "ALTI": 13, "MIN_DATE": "1983-01-01", "MAX_DATE": "2019-05-06" }, "geometry": { "type": "Point", "coordinates": [ 166.472833, -22.2135 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98805003, "NOM_USUEL": "TONGHOUE", "LAT": -22.200667, "LON": 166.478833, "ALTI": 29, "MIN_DATE": "1988-05-01", "MAX_DATE": "2015-10-31" }, "geometry": { "type": "Point", "coordinates": [ 166.478833, -22.200667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98805004, "NOM_USUEL": "NAKUTAKOIN", "LAT": -22.171167, "LON": 166.4355, "ALTI": 3, "MIN_DATE": "2014-10-22", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.4355, -22.171167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98807001, "NOM_USUEL": "HIENGHENE GEND.", "LAT": -20.688333, "LON": 164.9495, "ALTI": 22, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 164.9495, -20.688333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98807002, "NOM_USUEL": "TIENDANITE", "LAT": -20.748333, "LON": 164.886667, "ALTI": 18, "MIN_DATE": "1988-02-01", "MAX_DATE": "1997-11-30" }, "geometry": { "type": "Point", "coordinates": [ 164.886667, -20.748333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98808001, "NOM_USUEL": "HOUAILOU P", "LAT": -21.278333, "LON": 165.628, "ALTI": 11, "MIN_DATE": "1952-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.628, -21.278333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98808002, "NOM_USUEL": "COL ROUSSETTES", "LAT": -21.423333, "LON": 165.454, "ALTI": 361, "MIN_DATE": "1985-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.454, -21.423333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98808003, "NOM_USUEL": "KIEL", "LAT": -21.440833, "LON": 165.681667, "ALTI": 686, "MIN_DATE": "1989-01-01", "MAX_DATE": "2006-06-30" }, "geometry": { "type": "Point", "coordinates": [ 165.681667, -21.440833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98808004, "NOM_USUEL": "BAI UGHE", "LAT": -21.152833, "LON": 165.551333, "ALTI": 15, "MIN_DATE": "1981-01-01", "MAX_DATE": "2005-10-31" }, "geometry": { "type": "Point", "coordinates": [ 165.551333, -21.152833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98808005, "NOM_USUEL": "DO NEVA", "LAT": -21.29, "LON": 165.615, "ALTI": 5, "MIN_DATE": "1990-01-01", "MAX_DATE": "1996-02-29" }, "geometry": { "type": "Point", "coordinates": [ 165.615, -21.29 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98808006, "NOM_USUEL": "KUA", "LAT": -21.33, "LON": 165.773333, "ALTI": 4, "MIN_DATE": "1966-01-01", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 165.773333, -21.33 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98809001, "NOM_USUEL": "MOUE", "LAT": -22.589833, "LON": 167.452167, "ALTI": 95, "MIN_DATE": "1971-03-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 167.452167, -22.589833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98809002, "NOM_USUEL": "VAO", "LAT": -22.668333, "LON": 167.488333, "ALTI": 20, "MIN_DATE": "1980-01-01", "MAX_DATE": "2005-08-09" }, "geometry": { "type": "Point", "coordinates": [ 167.488333, -22.668333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98809003, "NOM_USUEL": "MOUE DOUBLON", "LAT": -22.589667, "LON": 167.450833, "ALTI": 94, "MIN_DATE": "2010-01-01", "MAX_DATE": "2020-05-31" }, "geometry": { "type": "Point", "coordinates": [ 167.450833, -22.589667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98810001, "NOM_USUEL": "GOMEN", "LAT": -20.667167, "LON": 164.396, "ALTI": 15, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 164.396, -20.667167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98810002, "NOM_USUEL": "OUACO", "LAT": -20.837, "LON": 164.468833, "ALTI": 11, "MIN_DATE": "1952-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 164.468833, -20.837 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98810003, "NOM_USUEL": "OUEHOLLE", "LAT": -20.588, "LON": 164.525, "ALTI": 155, "MIN_DATE": "1996-07-12", "MAX_DATE": "2008-11-30" }, "geometry": { "type": "Point", "coordinates": [ 164.525, -20.588 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98810004, "NOM_USUEL": "GOMEN DOUBLON", "LAT": -20.6815, "LON": 164.459667, "ALTI": 13, "MIN_DATE": "2010-01-01", "MAX_DATE": "2019-11-30" }, "geometry": { "type": "Point", "coordinates": [ 164.459667, -20.6815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98810800, "NOM_USUEL": "OUACO_DOUBLE", "LAT": -20.837, "LON": 164.468833, "ALTI": 11, "MIN_DATE": "2019-11-25", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 164.468833, -20.837 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98811001, "NOM_USUEL": "KONE", "LAT": -21.051333, "LON": 164.8335, "ALTI": 9, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 164.8335, -21.051333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98811003, "NOM_USUEL": "TANGO MEARE", "LAT": -20.99, "LON": 165.083333, "ALTI": 551, "MIN_DATE": "1990-09-01", "MAX_DATE": "1998-12-31" }, "geometry": { "type": "Point", "coordinates": [ 165.083333, -20.99 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98811004, "NOM_USUEL": "TANGO", "LAT": -20.983667, "LON": 165.026167, "ALTI": 341, "MIN_DATE": "1998-03-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.026167, -20.983667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98811005, "NOM_USUEL": "KONE DOUBLON", "LAT": -21.0545, "LON": 164.838167, "ALTI": 6, "MIN_DATE": "2010-01-01", "MAX_DATE": "2019-10-31" }, "geometry": { "type": "Point", "coordinates": [ 164.838167, -21.0545 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98812001, "NOM_USUEL": "KOUMAC", "LAT": -20.558667, "LON": 164.284167, "ALTI": 25, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 164.284167, -20.558667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98812002, "NOM_USUEL": "TIEBAGHI", "LAT": -20.459667, "LON": 164.215, "ALTI": 595, "MIN_DATE": "2000-08-01", "MAX_DATE": "2019-10-31" }, "geometry": { "type": "Point", "coordinates": [ 164.215, -20.459667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98813001, "NOM_USUEL": "LA FOA", "LAT": -21.701333, "LON": 165.814667, "ALTI": 12, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.814667, -21.701333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98813002, "NOM_USUEL": "PUECH", "LAT": -21.721667, "LON": 165.818333, "ALTI": 10, "MIN_DATE": "1979-01-01", "MAX_DATE": "1996-03-31" }, "geometry": { "type": "Point", "coordinates": [ 165.818333, -21.721667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98813003, "NOM_USUEL": "COL D AMIEU", "LAT": -21.591667, "LON": 165.8025, "ALTI": 345, "MIN_DATE": "1958-09-01", "MAX_DATE": "2007-11-15" }, "geometry": { "type": "Point", "coordinates": [ 165.8025, -21.591667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98813004, "NOM_USUEL": "POCQUEREUX", "LAT": -21.733833, "LON": 165.899167, "ALTI": 38, "MIN_DATE": "1985-04-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 165.899167, -21.733833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98813005, "NOM_USUEL": "POCQUEREUX-TEST", "LAT": -21.733833, "LON": 165.899167, "ALTI": 38, "MIN_DATE": "2014-10-21", "MAX_DATE": "2017-10-31" }, "geometry": { "type": "Point", "coordinates": [ 165.899167, -21.733833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814001, "NOM_USUEL": "OUANAHAM", "LAT": -20.777667, "LON": 167.241167, "ALTI": 30, "MIN_DATE": "1960-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 167.241167, -20.777667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814002, "NOM_USUEL": "WE", "LAT": -20.918, "LON": 167.263667, "ALTI": 11, "MIN_DATE": "1957-01-01", "MAX_DATE": "2014-03-19" }, "geometry": { "type": "Point", "coordinates": [ 167.263667, -20.918 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814003, "NOM_USUEL": "CHEPENEHE", "LAT": -20.785167, "LON": 167.1515, "ALTI": 10, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 167.1515, -20.785167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814004, "NOM_USUEL": "HAPETRA", "LAT": -20.939333, "LON": 167.1565, "ALTI": 29, "MIN_DATE": "1977-01-01", "MAX_DATE": "2023-04-30" }, "geometry": { "type": "Point", "coordinates": [ 167.1565, -20.939333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814005, "NOM_USUEL": "HNADRO", "LAT": -20.97, "LON": 167.213333, "ALTI": 38, "MIN_DATE": "1992-01-01", "MAX_DATE": "1998-05-31" }, "geometry": { "type": "Point", "coordinates": [ 167.213333, -20.97 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814006, "NOM_USUEL": "WIWATUL", "LAT": -21.092833, "LON": 167.363667, "ALTI": 44, "MIN_DATE": "1995-11-10", "MAX_DATE": "2021-07-31" }, "geometry": { "type": "Point", "coordinates": [ 167.363667, -21.092833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814007, "NOM_USUEL": "MOU", "LAT": -21.083333, "LON": 167.425333, "ALTI": 8, "MIN_DATE": "1977-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 167.425333, -21.083333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814008, "NOM_USUEL": "TIGA", "LAT": -21.098333, "LON": 167.793333, "ALTI": 4, "MIN_DATE": "1960-11-16", "MAX_DATE": "2005-07-31" }, "geometry": { "type": "Point", "coordinates": [ 167.793333, -21.098333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814800, "NOM_USUEL": "MOU_DOUBLE", "LAT": -21.083333, "LON": 167.425167, "ALTI": 8, "MIN_DATE": "2020-03-04", "MAX_DATE": "2022-03-31" }, "geometry": { "type": "Point", "coordinates": [ 167.425167, -21.083333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98814801, "NOM_USUEL": "CHEPENEHE_DOUBLE", "LAT": -20.785167, "LON": 167.1515, "ALTI": 10, "MIN_DATE": "2020-03-05", "MAX_DATE": "2021-04-30" }, "geometry": { "type": "Point", "coordinates": [ 167.1515, -20.785167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98815001, "NOM_USUEL": "LA ROCHE", "LAT": -21.4815, "LON": 168.035667, "ALTI": 41, "MIN_DATE": "1956-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 168.035667, -21.4815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98815002, "NOM_USUEL": "TADINE", "LAT": -21.549, "LON": 167.884333, "ALTI": 35, "MIN_DATE": "1952-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 167.884333, -21.549 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98815003, "NOM_USUEL": "WAKUARORI", "LAT": -21.438333, "LON": 167.886667, "ALTI": 60, "MIN_DATE": "1992-01-01", "MAX_DATE": "2002-07-30" }, "geometry": { "type": "Point", "coordinates": [ 167.886667, -21.438333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98815004, "NOM_USUEL": "ATHA", "LAT": -21.473333, "LON": 168.015, "ALTI": 43, "MIN_DATE": "1993-01-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ 168.015, -21.473333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98815005, "NOM_USUEL": "QUATRE CHEMINS", "LAT": -21.55, "LON": 167.991667, "ALTI": 51, "MIN_DATE": "1992-01-01", "MAX_DATE": "1995-11-30" }, "geometry": { "type": "Point", "coordinates": [ 167.991667, -21.55 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98815006, "NOM_USUEL": "PENELO", "LAT": -21.573333, "LON": 168.088333, "ALTI": 61, "MIN_DATE": "1985-01-01", "MAX_DATE": "1999-10-31" }, "geometry": { "type": "Point", "coordinates": [ 168.088333, -21.573333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98815007, "NOM_USUEL": "LA ROCHE DOUBLON", "LAT": -21.481667, "LON": 168.035667, "ALTI": 40, "MIN_DATE": "2010-01-01", "MAX_DATE": "2019-03-31" }, "geometry": { "type": "Point", "coordinates": [ 168.035667, -21.481667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98816001, "NOM_USUEL": "MOINDOU", "LAT": -21.670333, "LON": 165.680667, "ALTI": 17, "MIN_DATE": "1992-01-01", "MAX_DATE": "2020-02-29" }, "geometry": { "type": "Point", "coordinates": [ 165.680667, -21.670333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98816002, "NOM_USUEL": "TIARET", "LAT": -21.702667, "LON": 165.579833, "ALTI": 29, "MIN_DATE": "1979-01-13", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 165.579833, -21.702667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817001, "NOM_USUEL": "BOULARI", "LAT": -22.224333, "LON": 166.5195, "ALTI": 34, "MIN_DATE": "1981-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 166.5195, -22.224333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817002, "NOM_USUEL": "PLUM", "LAT": -22.295333, "LON": 166.658167, "ALTI": 5, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 166.658167, -22.295333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817003, "NOM_USUEL": "MONT-DORE MILLE", "LAT": -22.27, "LON": 166.575, "ALTI": 42, "MIN_DATE": "1991-01-01", "MAX_DATE": "1995-11-30" }, "geometry": { "type": "Point", "coordinates": [ 166.575, -22.27 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817004, "NOM_USUEL": "MONT-DORE", "LAT": -22.291167, "LON": 166.598, "ALTI": 11, "MIN_DATE": "1981-01-01", "MAX_DATE": "2010-03-10" }, "geometry": { "type": "Point", "coordinates": [ 166.598, -22.291167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817005, "NOM_USUEL": "LA COULEE", "LAT": -22.229833, "LON": 166.600333, "ALTI": 21, "MIN_DATE": "1979-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.600333, -22.229833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817006, "NOM_USUEL": "ILE OUEN", "LAT": -22.458333, "LON": 166.781667, "ALTI": 4, "MIN_DATE": "1991-01-01", "MAX_DATE": "1992-02-29" }, "geometry": { "type": "Point", "coordinates": [ 166.781667, -22.458333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817007, "NOM_USUEL": "CAP NDUA", "LAT": -22.3905, "LON": 166.9255, "ALTI": 182, "MIN_DATE": "1986-01-01", "MAX_DATE": "2009-09-22" }, "geometry": { "type": "Point", "coordinates": [ 166.9255, -22.3905 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817008, "NOM_USUEL": "MOUIRANGE", "LAT": -22.232167, "LON": 166.644667, "ALTI": 78, "MIN_DATE": "1993-01-01", "MAX_DATE": "2010-03-31" }, "geometry": { "type": "Point", "coordinates": [ 166.644667, -22.232167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817101, "NOM_USUEL": "PLUM XXV", "LAT": -22.266667, "LON": 166.666667, "ALTI": 400, "MIN_DATE": "1991-09-11", "MAX_DATE": "1993-06-30" }, "geometry": { "type": "Point", "coordinates": [ 166.666667, -22.266667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817102, "NOM_USUEL": "PLUM XXVI", "LAT": -22.266667, "LON": 166.666667, "ALTI": 430, "MIN_DATE": "1991-09-11", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ 166.666667, -22.266667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817103, "NOM_USUEL": "PLUM XXVII", "LAT": -22.266667, "LON": 166.666667, "ALTI": 345, "MIN_DATE": "1991-09-11", "MAX_DATE": "1992-09-15" }, "geometry": { "type": "Point", "coordinates": [ 166.666667, -22.266667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98817104, "NOM_USUEL": "GORO_USINE", "LAT": -22.3395, "LON": 166.908667, "ALTI": 159, "MIN_DATE": "1995-03-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.908667, -22.3395 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98818001, "NOM_USUEL": "NOUMEA", "LAT": -22.276, "LON": 166.452833, "ALTI": 69, "MIN_DATE": "1950-11-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.452833, -22.276 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98818002, "NOM_USUEL": "MAGENTA", "LAT": -22.260333, "LON": 166.473667, "ALTI": 3, "MIN_DATE": "1964-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.473667, -22.260333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98818003, "NOM_USUEL": "PHARE AMEDEE", "LAT": -22.478333, "LON": 166.467333, "ALTI": 3, "MIN_DATE": "1989-07-05", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.467333, -22.478333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98818101, "NOM_USUEL": "PTE MAGNIN", "LAT": -22.31, "LON": 166.448333, "ALTI": 4, "MIN_DATE": "1997-06-04", "MAX_DATE": "1997-12-16" }, "geometry": { "type": "Point", "coordinates": [ 166.448333, -22.31 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98818102, "NOM_USUEL": "PORT AUTONOME", "LAT": -22.265, "LON": 166.438333, "ALTI": 2, "MIN_DATE": "1998-11-01", "MAX_DATE": "1999-11-14" }, "geometry": { "type": "Point", "coordinates": [ 166.438333, -22.265 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98818201, "NOM_USUEL": "SURPRISE", "LAT": -18.48, "LON": 163.086333, "ALTI": 4, "MIN_DATE": "1994-07-06", "MAX_DATE": "2023-11-19" }, "geometry": { "type": "Point", "coordinates": [ 163.086333, -18.48 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98818202, "NOM_USUEL": "CHESTERFIELD", "LAT": -19.968333, "LON": 158.4755, "ALTI": 4, "MIN_DATE": "1994-07-06", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 158.4755, -19.968333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98818203, "NOM_USUEL": "MATTHEW", "LAT": -22.346167, "LON": 171.358333, "ALTI": 27, "MIN_DATE": "1994-07-06", "MAX_DATE": "2010-09-19" }, "geometry": { "type": "Point", "coordinates": [ 171.358333, -22.346167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98818204, "NOM_USUEL": "NOUMEA SECOURS", "LAT": -22.276667, "LON": 166.453333, "ALTI": 69, "MIN_DATE": "2006-11-01", "MAX_DATE": "2009-01-11" }, "geometry": { "type": "Point", "coordinates": [ 166.453333, -22.276667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98819001, "NOM_USUEL": "OUEGOA", "LAT": -20.345167, "LON": 164.44, "ALTI": 9, "MIN_DATE": "1955-02-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 164.44, -20.345167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98819002, "NOM_USUEL": "OUEGOA PARARI", "LAT": -20.349833, "LON": 164.438167, "ALTI": 24, "MIN_DATE": "2012-08-13", "MAX_DATE": "2015-11-30" }, "geometry": { "type": "Point", "coordinates": [ 164.438167, -20.349833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98819003, "NOM_USUEL": "OUEGOA BONE", "LAT": -20.398833, "LON": 164.444667, "ALTI": 16, "MIN_DATE": "2016-12-15", "MAX_DATE": "2019-10-31" }, "geometry": { "type": "Point", "coordinates": [ 164.444667, -20.398833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98820001, "NOM_USUEL": "OULOUP", "LAT": -20.639167, "LON": 166.571, "ALTI": 7, "MIN_DATE": "1966-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.571, -20.639167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98820002, "NOM_USUEL": "SAINT JOSEPH", "LAT": -20.45, "LON": 166.596667, "ALTI": 4, "MIN_DATE": "1956-01-01", "MAX_DATE": "1999-11-01" }, "geometry": { "type": "Point", "coordinates": [ 166.596667, -20.45 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98820003, "NOM_USUEL": "MOULI", "LAT": -20.722333, "LON": 166.422, "ALTI": 4, "MIN_DATE": "1991-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.422, -20.722333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98820004, "NOM_USUEL": "OULOUP DOUBLON", "LAT": -20.643, "LON": 166.572667, "ALTI": 6, "MIN_DATE": "2010-02-01", "MAX_DATE": "2019-05-31" }, "geometry": { "type": "Point", "coordinates": [ 166.572667, -20.643 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98820800, "NOM_USUEL": "MOULI_DOUBLE", "LAT": -20.722333, "LON": 166.422, "ALTI": 4, "MIN_DATE": "2020-06-23", "MAX_DATE": "2022-06-30" }, "geometry": { "type": "Point", "coordinates": [ 166.422, -20.722333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821002, "NOM_USUEL": "PAITA", "LAT": -22.1365, "LON": 166.369667, "ALTI": 21, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 166.369667, -22.1365 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821003, "NOM_USUEL": "KARIKATE", "LAT": -22.087, "LON": 166.199, "ALTI": 32, "MIN_DATE": "1979-01-01", "MAX_DATE": "2010-05-31" }, "geometry": { "type": "Point", "coordinates": [ 166.199, -22.087 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821004, "NOM_USUEL": "NASSANDOU", "LAT": -22.083, "LON": 166.257, "ALTI": 38, "MIN_DATE": "1979-01-01", "MAX_DATE": "2021-04-30" }, "geometry": { "type": "Point", "coordinates": [ 166.257, -22.083 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821005, "NOM_USUEL": "PORT LAGUERRE", "LAT": -22.104667, "LON": 166.319833, "ALTI": 23, "MIN_DATE": "1952-02-01", "MAX_DATE": "2024-04-02" }, "geometry": { "type": "Point", "coordinates": [ 166.319833, -22.104667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821006, "NOM_USUEL": "POINTE MA", "LAT": -22.2205, "LON": 166.3425, "ALTI": 5, "MIN_DATE": "1951-01-01", "MAX_DATE": "2009-02-13" }, "geometry": { "type": "Point", "coordinates": [ 166.3425, -22.2205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821007, "NOM_USUEL": "LA TAMOA", "LAT": -22.065, "LON": 166.291667, "ALTI": 65, "MIN_DATE": "1989-04-01", "MAX_DATE": "2003-07-31" }, "geometry": { "type": "Point", "coordinates": [ 166.291667, -22.065 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821101, "NOM_USUEL": "TIARE", "LAT": -22.166667, "LON": 166.27, "ALTI": 40, "MIN_DATE": "1998-01-13", "MAX_DATE": "1998-10-01" }, "geometry": { "type": "Point", "coordinates": [ 166.27, -22.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821102, "NOM_USUEL": "HUMBOLDT", "LAT": -21.883333, "LON": 166.411667, "ALTI": 1340, "MIN_DATE": "1995-07-25", "MAX_DATE": "1995-10-24" }, "geometry": { "type": "Point", "coordinates": [ 166.411667, -21.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821103, "NOM_USUEL": "PORT LAGUERRE VILLA", "LAT": -22.104667, "LON": 166.319833, "ALTI": 23, "MIN_DATE": "2017-08-27", "MAX_DATE": "2017-10-31" }, "geometry": { "type": "Point", "coordinates": [ 166.319833, -22.104667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98821800, "NOM_USUEL": "PORT LAGUERRE-TEST", "LAT": -22.104, "LON": 166.319333, "ALTI": 26, "MIN_DATE": "2012-11-19", "MAX_DATE": "2017-10-31" }, "geometry": { "type": "Point", "coordinates": [ 166.319333, -22.104 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98822001, "NOM_USUEL": "POINDIMIE", "LAT": -20.9325, "LON": 165.328, "ALTI": 14, "MIN_DATE": "1964-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.328, -20.9325 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98823001, "NOM_USUEL": "PONERIHOUEN", "LAT": -21.072167, "LON": 165.404333, "ALTI": 27, "MIN_DATE": "1952-01-02", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.404333, -21.072167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98823002, "NOM_USUEL": "AOUPINIE", "LAT": -21.178167, "LON": 165.284667, "ALTI": 905, "MIN_DATE": "1991-01-01", "MAX_DATE": "2023-05-08" }, "geometry": { "type": "Point", "coordinates": [ 165.284667, -21.178167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98823800, "NOM_USUEL": "PONERIHOUEN_DOUBLE", "LAT": -21.072167, "LON": 165.404333, "ALTI": 27, "MIN_DATE": "2020-08-01", "MAX_DATE": "2022-07-31" }, "geometry": { "type": "Point", "coordinates": [ 165.404333, -21.072167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98824001, "NOM_USUEL": "POUEBO", "LAT": -20.383167, "LON": 164.568333, "ALTI": 63, "MIN_DATE": "1955-12-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 164.568333, -20.383167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98824002, "NOM_USUEL": "GALARINO", "LAT": -20.513, "LON": 164.765333, "ALTI": 4, "MIN_DATE": "1959-08-01", "MAX_DATE": "2024-03-03" }, "geometry": { "type": "Point", "coordinates": [ 164.765333, -20.513 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98824003, "NOM_USUEL": "POUEBO DOUBLON", "LAT": -20.398, "LON": 164.585667, "ALTI": 19, "MIN_DATE": "2010-01-01", "MAX_DATE": "2019-11-30" }, "geometry": { "type": "Point", "coordinates": [ 164.585667, -20.398 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98825001, "NOM_USUEL": "POUEMBOUT", "LAT": -21.1195, "LON": 164.901333, "ALTI": 27, "MIN_DATE": "1962-02-01", "MAX_DATE": "2009-02-18" }, "geometry": { "type": "Point", "coordinates": [ 164.901333, -21.1195 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98825002, "NOM_USUEL": "KOPETO", "LAT": -21.170833, "LON": 165.0245, "ALTI": 939, "MIN_DATE": "1974-11-20", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 165.0245, -21.170833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98826001, "NOM_USUEL": "POUM", "LAT": -20.2325, "LON": 164.022333, "ALTI": 3, "MIN_DATE": "1952-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 164.022333, -20.2325 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98826002, "NOM_USUEL": "POINGAM", "LAT": -20.081167, "LON": 164.031333, "ALTI": 35, "MIN_DATE": "1994-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 164.031333, -20.081167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98826003, "NOM_USUEL": "ARAMA", "LAT": -20.258833, "LON": 164.208833, "ALTI": 8, "MIN_DATE": "1962-01-01", "MAX_DATE": "2019-10-31" }, "geometry": { "type": "Point", "coordinates": [ 164.208833, -20.258833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98826004, "NOM_USUEL": "POUM_SLN", "LAT": -20.2595, "LON": 164.0385, "ALTI": 413, "MIN_DATE": "2008-07-01", "MAX_DATE": "2019-06-30" }, "geometry": { "type": "Point", "coordinates": [ 164.0385, -20.2595 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98826800, "NOM_USUEL": "POUM_DOUBLE", "LAT": -20.232667, "LON": 164.022667, "ALTI": 3, "MIN_DATE": "2019-11-25", "MAX_DATE": "2022-01-31" }, "geometry": { "type": "Point", "coordinates": [ 164.022667, -20.232667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98827001, "NOM_USUEL": "POYA", "LAT": -21.345333, "LON": 165.157, "ALTI": 7, "MIN_DATE": "1952-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.157, -21.345333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98827002, "NOM_USUEL": "NEPOUI", "LAT": -21.318167, "LON": 165.002167, "ALTI": 82, "MIN_DATE": "1970-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.002167, -21.318167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98829001, "NOM_USUEL": "THIO P.", "LAT": -21.610667, "LON": 166.2155, "ALTI": 10, "MIN_DATE": "1952-01-01", "MAX_DATE": "2021-06-30" }, "geometry": { "type": "Point", "coordinates": [ 166.2155, -21.610667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98829002, "NOM_USUEL": "THIO SLN", "LAT": -21.613333, "LON": 166.248, "ALTI": 18, "MIN_DATE": "1992-01-01", "MAX_DATE": "2010-06-04" }, "geometry": { "type": "Point", "coordinates": [ 166.248, -21.613333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98829003, "NOM_USUEL": "BORINDI", "LAT": -21.796333, "LON": 166.4915, "ALTI": 5, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.4915, -21.796333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98829101, "NOM_USUEL": "THIO-PLATEAU", "LAT": -21.621833, "LON": 166.1875, "ALTI": 521, "MIN_DATE": "2008-04-25", "MAX_DATE": "2020-09-30" }, "geometry": { "type": "Point", "coordinates": [ 166.1875, -21.621833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98829102, "NOM_USUEL": "THIO", "LAT": -21.6135, "LON": 166.237833, "ALTI": 3, "MIN_DATE": "2017-12-12", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.237833, -21.6135 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98830001, "NOM_USUEL": "TOUHO GEND.", "LAT": -20.780833, "LON": 165.227667, "ALTI": 5, "MIN_DATE": "1952-01-01", "MAX_DATE": "2019-11-30" }, "geometry": { "type": "Point", "coordinates": [ 165.227667, -20.780833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98830002, "NOM_USUEL": "TOUHO AEROD.", "LAT": -20.789333, "LON": 165.2545, "ALTI": 2, "MIN_DATE": "1993-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.2545, -20.789333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98830003, "NOM_USUEL": "TIWAKA", "LAT": -20.899167, "LON": 165.217833, "ALTI": 14, "MIN_DATE": "1954-09-30", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.217833, -20.899167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98831001, "NOM_USUEL": "VOH", "LAT": -20.950167, "LON": 164.6875, "ALTI": 6, "MIN_DATE": "1967-04-01", "MAX_DATE": "2024-03-14" }, "geometry": { "type": "Point", "coordinates": [ 164.6875, -20.950167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98831002, "NOM_USUEL": "POUANLOTCH", "LAT": -20.862, "LON": 164.600333, "ALTI": 58, "MIN_DATE": "1987-01-01", "MAX_DATE": "2015-05-31" }, "geometry": { "type": "Point", "coordinates": [ 164.600333, -20.862 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98831003, "NOM_USUEL": "VAVOUTO", "LAT": -21.0105, "LON": 164.6755, "ALTI": 93, "MIN_DATE": "2001-10-01", "MAX_DATE": "2011-03-31" }, "geometry": { "type": "Point", "coordinates": [ 164.6755, -21.0105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98831004, "NOM_USUEL": "OUATIALO", "LAT": -20.763667, "LON": 164.698833, "ALTI": 120, "MIN_DATE": "2002-02-22", "MAX_DATE": "2008-05-31" }, "geometry": { "type": "Point", "coordinates": [ 164.698833, -20.763667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98831005, "NOM_USUEL": "ODHAVI", "LAT": -20.935833, "LON": 164.800833, "ALTI": 45, "MIN_DATE": "2001-02-22", "MAX_DATE": "2008-07-23" }, "geometry": { "type": "Point", "coordinates": [ 164.800833, -20.935833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98831101, "NOM_USUEL": "DUROC", "LAT": -21.0, "LON": 164.623333, "ALTI": 3, "MIN_DATE": "2001-07-18", "MAX_DATE": "2010-01-31" }, "geometry": { "type": "Point", "coordinates": [ 164.623333, -21.0 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98831800, "NOM_USUEL": "VOH_DOUBLE", "LAT": -20.950167, "LON": 164.6875, "ALTI": 6, "MIN_DATE": "2019-11-25", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 164.6875, -20.950167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832001, "NOM_USUEL": "YATE US.", "LAT": -22.153, "LON": 166.911167, "ALTI": 4, "MIN_DATE": "1951-01-01", "MAX_DATE": "2010-02-28" }, "geometry": { "type": "Point", "coordinates": [ 166.911167, -22.153 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832002, "NOM_USUEL": "YATE MRIE", "LAT": -22.1565, "LON": 166.939, "ALTI": 25, "MIN_DATE": "1993-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.939, -22.1565 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832003, "NOM_USUEL": "DZUMAC", "LAT": -22.041667, "LON": 166.505, "ALTI": 891, "MIN_DATE": "1988-09-01", "MAX_DATE": "2004-07-05" }, "geometry": { "type": "Point", "coordinates": [ 166.505, -22.041667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832004, "NOM_USUEL": "MTGNE SOURCES", "LAT": -22.143833, "LON": 166.593167, "ALTI": 773, "MIN_DATE": "1989-08-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.593167, -22.143833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832005, "NOM_USUEL": "OUINNE", "LAT": -21.984, "LON": 166.6805, "ALTI": 54, "MIN_DATE": "1974-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.6805, -21.984 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832006, "NOM_USUEL": "RIVIERE BLANCHE", "LAT": -22.132667, "LON": 166.726333, "ALTI": 171, "MIN_DATE": "2000-12-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.726333, -22.132667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832007, "NOM_USUEL": "OUENAROU", "LAT": -22.1525, "LON": 166.735, "ALTI": 180, "MIN_DATE": "1960-01-01", "MAX_DATE": "2010-01-31" }, "geometry": { "type": "Point", "coordinates": [ 166.735, -22.1525 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832101, "NOM_USUEL": "GORO_ANCIENNE_PEPINIERE", "LAT": -22.269167, "LON": 166.9675, "ALTI": 298, "MIN_DATE": "1995-03-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 166.9675, -22.269167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832102, "NOM_USUEL": "GORO_MINE", "LAT": -22.297833, "LON": 166.947667, "ALTI": 179, "MIN_DATE": "1996-12-23", "MAX_DATE": "2018-04-21" }, "geometry": { "type": "Point", "coordinates": [ 166.947667, -22.297833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832103, "NOM_USUEL": "GORO_GISEMENT", "LAT": -22.289667, "LON": 166.9845, "ALTI": 243, "MIN_DATE": "2010-10-22", "MAX_DATE": "2017-11-30" }, "geometry": { "type": "Point", "coordinates": [ 166.9845, -22.289667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832104, "NOM_USUEL": "GORO_RESIDUS", "LAT": -22.313667, "LON": 166.912667, "ALTI": 246, "MIN_DATE": "2011-07-12", "MAX_DATE": "2021-07-24" }, "geometry": { "type": "Point", "coordinates": [ 166.912667, -22.313667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98832800, "NOM_USUEL": "OUINNE_DOUBLE", "LAT": -21.9785, "LON": 166.680667, "ALTI": 4, "MIN_DATE": "2021-07-28", "MAX_DATE": "2023-07-31" }, "geometry": { "type": "Point", "coordinates": [ 166.680667, -21.9785 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98833001, "NOM_USUEL": "KOUAOUA", "LAT": -21.398667, "LON": 165.831667, "ALTI": 25, "MIN_DATE": "1966-01-01", "MAX_DATE": "2005-08-31" }, "geometry": { "type": "Point", "coordinates": [ 165.831667, -21.398667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98833002, "NOM_USUEL": "MEA", "LAT": -21.4555, "LON": 165.767333, "ALTI": 571, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 165.767333, -21.4555 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74001001, "NOM_USUEL": "ABONDANCE", "LAT": 46.2845, "LON": 6.734167, "ALTI": 947, "MIN_DATE": "1944-05-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.734167, 46.2845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74002001, "NOM_USUEL": "ALBY SUR CHERAN", "LAT": 45.816667, "LON": 6.021667, "ALTI": 422, "MIN_DATE": "1928-01-01", "MAX_DATE": "1980-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.021667, 45.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74010001, "NOM_USUEL": "ANNECY", "LAT": 45.901667, "LON": 6.115, "ALTI": 448, "MIN_DATE": "1876-01-01", "MAX_DATE": "1976-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.115, 45.901667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74012001, "NOM_USUEL": "ANNEMASSE", "LAT": 46.196667, "LON": 6.248333, "ALTI": 445, "MIN_DATE": "1877-01-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.248333, 46.196667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74024001, "NOM_USUEL": "AYZE", "LAT": 46.0795, "LON": 6.431333, "ALTI": 449, "MIN_DATE": "1944-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.431333, 46.0795 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74032001, "NOM_USUEL": "BELLEVAUX LE CHAMP DU NOYER", "LAT": 46.255, "LON": 6.53, "ALTI": 912, "MIN_DATE": "1928-01-01", "MAX_DATE": "1949-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.53, 46.255 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74034002, "NOM_USUEL": "LE BIOT", "LAT": 46.261667, "LON": 6.633333, "ALTI": 780, "MIN_DATE": "1928-01-01", "MAX_DATE": "1964-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.633333, 46.261667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74041001, "NOM_USUEL": "BONNEVAUX", "LAT": 46.311667, "LON": 6.678333, "ALTI": 800, "MIN_DATE": "1947-01-01", "MAX_DATE": "1982-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.678333, 46.311667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74042001, "NOM_USUEL": "BONNEVILLE", "LAT": 46.078333, "LON": 6.408333, "ALTI": 447, "MIN_DATE": "1930-10-01", "MAX_DATE": "1957-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.408333, 46.078333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74051001, "NOM_USUEL": "CERCIER", "LAT": 46.026667, "LON": 6.048333, "ALTI": 580, "MIN_DATE": "1933-07-12", "MAX_DATE": "1992-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.048333, 46.026667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056001, "NOM_USUEL": "CHAMONIX", "LAT": 45.9295, "LON": 6.8775, "ALTI": 1042, "MIN_DATE": "1876-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.8775, 45.9295 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056003, "NOM_USUEL": "LE TOUR", "LAT": 46.003333, "LON": 6.946667, "ALTI": 1460, "MIN_DATE": "1944-02-01", "MAX_DATE": "1966-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.946667, 46.003333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74080001, "NOM_USUEL": "CLUSAZ (LA)", "LAT": 45.898333, "LON": 6.428333, "ALTI": 1150, "MIN_DATE": "1945-01-01", "MAX_DATE": "1988-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.428333, 45.898333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74081004, "NOM_USUEL": "CLUSES PONTHION", "LAT": 46.058333, "LON": 6.578333, "ALTI": 500, "MIN_DATE": "1946-06-01", "MAX_DATE": "1955-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.578333, 46.058333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74083001, "NOM_USUEL": "COMBLOUX", "LAT": 45.898333, "LON": 6.643333, "ALTI": 940, "MIN_DATE": "1948-02-01", "MAX_DATE": "1982-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.643333, 45.898333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74085001, "NOM_USUEL": "CONTAMINES MJ", "LAT": 45.822333, "LON": 6.728833, "ALTI": 1180, "MIN_DATE": "1944-02-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.728833, 45.822333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74087001, "NOM_USUEL": "CONTAMINE-SUR- ARVE", "LAT": 46.128667, "LON": 6.34, "ALTI": 452, "MIN_DATE": "1944-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.34, 46.128667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74096001, "NOM_USUEL": "CRUSEILLES", "LAT": 46.033333, "LON": 6.106667, "ALTI": 783, "MIN_DATE": "1877-01-01", "MAX_DATE": "1942-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.106667, 46.033333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74105001, "NOM_USUEL": "DOUVAINE BOURG", "LAT": 46.305, "LON": 6.301667, "ALTI": 428, "MIN_DATE": "1877-01-01", "MAX_DATE": "1965-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.301667, 46.305 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74119001, "NOM_USUEL": "EVIAN", "LAT": 46.401667, "LON": 6.598333, "ALTI": 380, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.598333, 46.401667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74123001, "NOM_USUEL": "FAVERGES", "LAT": 45.746667, "LON": 6.293333, "ALTI": 516, "MIN_DATE": "1928-08-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.293333, 45.746667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74134002, "NOM_USUEL": "GETS (LES)", "LAT": 46.158667, "LON": 6.670333, "ALTI": 1172, "MIN_DATE": "1877-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.670333, 46.158667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74137002, "NOM_USUEL": "GROISY", "LAT": 46.013333, "LON": 6.176667, "ALTI": 750, "MIN_DATE": "1947-11-09", "MAX_DATE": "1963-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.176667, 46.013333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74143002, "NOM_USUEL": "MT LACHAT", "LAT": 45.888333, "LON": 6.796667, "ALTI": 2075, "MIN_DATE": "1943-02-04", "MAX_DATE": "1953-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.796667, 45.888333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74143003, "NOM_USUEL": "HOUCHES (LES)", "LAT": 45.8925, "LON": 6.800667, "ALTI": 1004, "MIN_DATE": "1940-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.800667, 45.8925 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74150001, "NOM_USUEL": "LOISIN GRAND-CAVE", "LAT": 46.29, "LON": 6.31, "ALTI": 340, "MIN_DATE": "1944-05-01", "MAX_DATE": "1946-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.31, 46.29 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74173001, "NOM_USUEL": "MEGEVE", "LAT": 45.855333, "LON": 6.608167, "ALTI": 1080, "MIN_DATE": "1877-01-01", "MAX_DATE": "2024-03-25" }, "geometry": { "type": "Point", "coordinates": [ 6.608167, 45.855333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74187001, "NOM_USUEL": "MONTMIN", "LAT": 45.803833, "LON": 6.265, "ALTI": 1050, "MIN_DATE": "1944-02-01", "MAX_DATE": "2009-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.265, 45.803833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74191002, "NOM_USUEL": "MORZINE LA BEZIERE", "LAT": 46.178333, "LON": 6.708333, "ALTI": 1000, "MIN_DATE": "1944-06-01", "MAX_DATE": "1959-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.708333, 46.178333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74203001, "NOM_USUEL": "NOVEL", "LAT": 46.368833, "LON": 6.79, "ALTI": 949, "MIN_DATE": "1944-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.79, 46.368833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74208002, "NOM_USUEL": "PASSY PRAZ COUTANT", "LAT": 45.921667, "LON": 6.691667, "ALTI": 1160, "MIN_DATE": "1929-01-01", "MAX_DATE": "1947-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.691667, 45.921667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74211001, "NOM_USUEL": "PERS-JUSSY", "LAT": 46.106667, "LON": 6.266667, "ALTI": 580, "MIN_DATE": "1939-01-01", "MAX_DATE": "1998-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.266667, 46.106667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74220001, "NOM_USUEL": "REIGNIER", "LAT": 46.135, "LON": 6.268333, "ALTI": 465, "MIN_DATE": "1928-08-01", "MAX_DATE": "1938-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.268333, 46.135 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74225001, "NOM_USUEL": "RUMILLY", "LAT": 45.848333, "LON": 5.953333, "ALTI": 345, "MIN_DATE": "1877-01-01", "MAX_DATE": "1995-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.953333, 45.848333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74238001, "NOM_USUEL": "SAINT-JEAN-D'AULPS ECOLE", "LAT": 46.233333, "LON": 6.656667, "ALTI": 805, "MIN_DATE": "1948-11-30", "MAX_DATE": "1958-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.656667, 46.233333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74239001, "NOM_USUEL": "ST JEAN DE SIXT", "LAT": 45.921667, "LON": 6.41, "ALTI": 963, "MIN_DATE": "1947-02-01", "MAX_DATE": "1964-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.41, 45.921667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74243001, "NOM_USUEL": "ST JULIEN", "LAT": 46.145, "LON": 6.078333, "ALTI": 462, "MIN_DATE": "1931-01-01", "MAX_DATE": "1964-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.078333, 46.145 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74256001, "NOM_USUEL": "SALLANCHES", "LAT": 45.932, "LON": 6.651, "ALTI": 541, "MIN_DATE": "1877-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.651, 45.932 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74256002, "NOM_USUEL": "SALLANCHES ECOLE", "LAT": 45.933333, "LON": 6.631667, "ALTI": 540, "MIN_DATE": "1928-01-01", "MAX_DATE": "1929-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.631667, 45.933333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74258002, "NOM_USUEL": "SAMOENS", "LAT": 46.086667, "LON": 6.726667, "ALTI": 785, "MIN_DATE": "1929-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.726667, 46.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74269001, "NOM_USUEL": "SEYSSEL", "LAT": 45.963333, "LON": 5.85, "ALTI": 360, "MIN_DATE": "1928-01-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.85, 45.963333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74270001, "NOM_USUEL": "SEYTHENEX SEYCHEUX", "LAT": 45.726667, "LON": 6.296667, "ALTI": 732, "MIN_DATE": "1949-11-01", "MAX_DATE": "1961-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.296667, 45.726667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74276002, "NOM_USUEL": "TANINGES", "LAT": 46.1, "LON": 6.576667, "ALTI": 630, "MIN_DATE": "1928-01-01", "MAX_DATE": "1965-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.576667, 46.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74280001, "NOM_USUEL": "THONES", "LAT": 45.877833, "LON": 6.323, "ALTI": 630, "MIN_DATE": "1877-01-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.323, 45.877833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74281001, "NOM_USUEL": "THONON-INRA", "LAT": 46.366667, "LON": 6.455, "ALTI": 376, "MIN_DATE": "1944-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.455, 46.366667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74282001, "NOM_USUEL": "THORENS-GLIERES PC", "LAT": 45.995, "LON": 6.246667, "ALTI": 663, "MIN_DATE": "1928-01-01", "MAX_DATE": "1944-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.246667, 45.995 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74285001, "NOM_USUEL": "USINENS", "LAT": 46.008333, "LON": 5.841667, "ALTI": 417, "MIN_DATE": "1948-04-13", "MAX_DATE": "2006-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.841667, 46.008333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74289001, "NOM_USUEL": "VALLIERES", "LAT": 45.901667, "LON": 5.921667, "ALTI": 309, "MIN_DATE": "1948-12-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.921667, 45.901667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74003001, "NOM_USUEL": "ALEX", "LAT": 45.885, "LON": 6.233833, "ALTI": 680, "MIN_DATE": "1996-01-01", "MAX_DATE": "2013-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.233833, 45.885 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74012002, "NOM_USUEL": "ANNEMASSE EQUIPEMENT", "LAT": 46.193333, "LON": 6.231667, "ALTI": 420, "MIN_DATE": "1984-05-01", "MAX_DATE": "1987-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.231667, 46.193333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74014001, "NOM_USUEL": "ARACHES LA COMBE", "LAT": 46.046667, "LON": 6.646667, "ALTI": 1120, "MIN_DATE": "1992-11-01", "MAX_DATE": "1993-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.646667, 46.046667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74014002, "NOM_USUEL": "LES CARROZ", "LAT": 46.024667, "LON": 6.644, "ALTI": 1160, "MIN_DATE": "1996-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.644, 46.024667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74014003, "NOM_USUEL": "ARACHE", "LAT": 46.046667, "LON": 6.646667, "ALTI": 1120, "MIN_DATE": "1992-11-01", "MAX_DATE": "1993-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.646667, 46.046667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74014004, "NOM_USUEL": "FLAINE_SAPC", "LAT": 46.002833, "LON": 6.697167, "ALTI": 1611, "MIN_DATE": "2016-04-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.697167, 46.002833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74014400, "NOM_USUEL": "Flaine", "LAT": 46.0035, "LON": 6.697333, "ALTI": 1620, "MIN_DATE": "1973-12-16", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 6.697333, 46.0035 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74014402, "NOM_USUEL": "LES CARROZ KEDEUSAZ", "LAT": 46.027667, "LON": 6.665667, "ALTI": 1760, "MIN_DATE": "1992-01-16", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 6.665667, 46.027667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74014404, "NOM_USUEL": "LES CARROZ VILLAGE", "LAT": 46.024667, "LON": 6.643833, "ALTI": 1152, "MIN_DATE": "2001-08-02", "MAX_DATE": "2018-04-21" }, "geometry": { "type": "Point", "coordinates": [ 6.643833, 46.024667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74016001, "NOM_USUEL": "ARCHAMPS", "LAT": 46.131833, "LON": 6.140167, "ALTI": 560, "MIN_DATE": "1993-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.140167, 46.131833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74031001, "NOM_USUEL": "BEAUMONT", "LAT": 46.093, "LON": 6.105667, "ALTI": 690, "MIN_DATE": "1997-07-01", "MAX_DATE": "2019-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.105667, 46.093 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74033400, "NOM_USUEL": "Bernex", "LAT": 46.341167, "LON": 6.708167, "ALTI": 1535, "MIN_DATE": "2003-01-07", "MAX_DATE": "2024-03-16" }, "geometry": { "type": "Point", "coordinates": [ 6.708167, 46.341167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74034001, "NOM_USUEL": "LE BIOT", "LAT": 46.278167, "LON": 6.621, "ALTI": 690, "MIN_DATE": "1964-03-01", "MAX_DATE": "2020-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.621, 46.278167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74035001, "NOM_USUEL": "BLOYE", "LAT": 45.821667, "LON": 5.944667, "ALTI": 375, "MIN_DATE": "1995-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.944667, 45.821667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74037001, "NOM_USUEL": "BOEGE VOIRONS", "LAT": 46.211667, "LON": 6.416667, "ALTI": 1400, "MIN_DATE": "1958-02-01", "MAX_DATE": "1972-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.416667, 46.211667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74037002, "NOM_USUEL": "BOEGE", "LAT": 46.213333, "LON": 6.395, "ALTI": 750, "MIN_DATE": "1973-09-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.395, 46.213333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74038001, "NOM_USUEL": "BOGEVE", "LAT": 46.198333, "LON": 6.466667, "ALTI": 1250, "MIN_DATE": "1995-08-01", "MAX_DATE": "1999-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.466667, 46.198333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74042003, "NOM_USUEL": "BONNEVILLE", "LAT": 46.0685, "LON": 6.399833, "ALTI": 453, "MIN_DATE": "2003-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.399833, 46.0685 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74043001, "NOM_USUEL": "BONS CHABLAIS", "LAT": 46.263333, "LON": 6.338333, "ALTI": 575, "MIN_DATE": "2000-04-01", "MAX_DATE": "2007-12-30" }, "geometry": { "type": "Point", "coordinates": [ 6.338333, 46.263333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74045001, "NOM_USUEL": "LE BOUCHET_SAPC", "LAT": 45.7995, "LON": 6.367667, "ALTI": 925, "MIN_DATE": "2015-09-23", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.367667, 45.7995 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74050001, "NOM_USUEL": "BURDIGNIN ECOLE", "LAT": 46.22, "LON": 6.423333, "ALTI": 850, "MIN_DATE": "1952-10-13", "MAX_DATE": "1956-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.423333, 46.22 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74051002, "NOM_USUEL": "CERCIER", "LAT": 46.031833, "LON": 6.0435, "ALTI": 492, "MIN_DATE": "1993-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.0435, 46.031833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056002, "NOM_USUEL": "CHAMONIX-MONT-BLANC GLACIER", "LAT": 45.92, "LON": 6.863333, "ALTI": 2060, "MIN_DATE": "1971-01-01", "MAX_DATE": "1971-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.863333, 45.92 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056004, "NOM_USUEL": "ARGENTIERE", "LAT": 45.983333, "LON": 6.928333, "ALTI": 1275, "MIN_DATE": "1986-07-01", "MAX_DATE": "2007-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.928333, 45.983333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056005, "NOM_USUEL": "LE TOUR", "LAT": 46.003833, "LON": 6.9485, "ALTI": 1500, "MIN_DATE": "1987-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.9485, 46.003833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056006, "NOM_USUEL": "AIGUILLE DU MIDI", "LAT": 45.8785, "LON": 6.8875, "ALTI": 3845, "MIN_DATE": "1993-02-13", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.8875, 45.8785 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056400, "NOM_USUEL": "CHAMONIX-OBS", "LAT": 45.923333, "LON": 6.867333, "ALTI": 1043, "MIN_DATE": "1983-12-12", "MAX_DATE": "2024-03-30" }, "geometry": { "type": "Point", "coordinates": [ 6.867333, 45.923333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056402, "NOM_USUEL": "LE TOUR NIVO", "LAT": 46.002333, "LON": 6.947333, "ALTI": 1478, "MIN_DATE": "1985-12-17", "MAX_DATE": "2024-03-27" }, "geometry": { "type": "Point", "coordinates": [ 6.947333, 46.002333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056405, "NOM_USUEL": "AIGUILLES ROUGES-NIVOSE", "LAT": 45.986333, "LON": 6.896833, "ALTI": 2365, "MIN_DATE": "1992-12-23", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.896833, 45.986333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056416, "NOM_USUEL": "Lognan", "LAT": 45.968333, "LON": 6.942833, "ALTI": 1970, "MIN_DATE": "1995-01-31", "MAX_DATE": "2024-04-05" }, "geometry": { "type": "Point", "coordinates": [ 6.942833, 45.968333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056417, "NOM_USUEL": "LA FLEGERE", "LAT": 45.9625, "LON": 6.889167, "ALTI": 1850, "MIN_DATE": "2006-01-07", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.889167, 45.9625 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056418, "NOM_USUEL": "LE TOUR BALME", "LAT": 46.020833, "LON": 6.970833, "ALTI": 2196, "MIN_DATE": "2006-01-09", "MAX_DATE": "2024-04-04" }, "geometry": { "type": "Point", "coordinates": [ 6.970833, 46.020833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74060001, "NOM_USUEL": "CHAPELLE SAINT-MAURICE_SAPC", "LAT": 45.782333, "LON": 6.152167, "ALTI": 970, "MIN_DATE": "2008-06-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.152167, 45.782333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74062001, "NOM_USUEL": "CHARVONNEX", "LAT": 45.985, "LON": 6.166667, "ALTI": 520, "MIN_DATE": "1993-10-01", "MAX_DATE": "1995-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.166667, 45.985 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74063002, "NOM_USUEL": "CHATEL", "LAT": 46.255833, "LON": 6.818833, "ALTI": 1155, "MIN_DATE": "1958-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.818833, 46.255833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74063404, "NOM_USUEL": "CHATEL NIVO", "LAT": 46.218333, "LON": 6.792333, "ALTI": 1635, "MIN_DATE": "2003-12-30", "MAX_DATE": "2014-04-24" }, "geometry": { "type": "Point", "coordinates": [ 6.792333, 46.218333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74063405, "NOM_USUEL": "CHATEL NIVO", "LAT": 46.225167, "LON": 6.797167, "ALTI": 1700, "MIN_DATE": "2014-12-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.797167, 46.225167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74064001, "NOM_USUEL": "CHATILLON-SUR-CLUSES BOURG", "LAT": 46.086667, "LON": 6.583333, "ALTI": 635, "MIN_DATE": "1966-01-01", "MAX_DATE": "1966-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.583333, 46.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74080002, "NOM_USUEL": "CLUSAZ (LA)", "LAT": 45.887167, "LON": 6.427167, "ALTI": 1180, "MIN_DATE": "1988-07-01", "MAX_DATE": "2024-03-28" }, "geometry": { "type": "Point", "coordinates": [ 6.427167, 45.887167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74080403, "NOM_USUEL": "LA CLUSAZ", "LAT": 45.8935, "LON": 6.445667, "ALTI": 1597, "MIN_DATE": "2016-03-10", "MAX_DATE": "2024-01-29" }, "geometry": { "type": "Point", "coordinates": [ 6.445667, 45.8935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74081001, "NOM_USUEL": "CLUSES", "LAT": 46.08, "LON": 6.563333, "ALTI": 477, "MIN_DATE": "1956-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.563333, 46.08 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74081002, "NOM_USUEL": "CLUSES", "LAT": 46.080667, "LON": 6.559833, "ALTI": 475, "MIN_DATE": "1976-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.559833, 46.080667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74081003, "NOM_USUEL": "CLUSES", "LAT": 46.048333, "LON": 6.588333, "ALTI": 485, "MIN_DATE": "1995-03-01", "MAX_DATE": "2005-08-28" }, "geometry": { "type": "Point", "coordinates": [ 6.588333, 46.048333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74083002, "NOM_USUEL": "COMBLOUX", "LAT": 45.892833, "LON": 6.626667, "ALTI": 1183, "MIN_DATE": "1982-10-16", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.626667, 45.892833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74085406, "NOM_USUEL": "LES CONTAMINES MONTJOIE", "LAT": 45.791833, "LON": 6.699833, "ALTI": 1780, "MIN_DATE": "2016-12-20", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 6.699833, 45.791833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74093001, "NOM_USUEL": "CRAN-GEVRIER", "LAT": 45.910833, "LON": 6.107833, "ALTI": 426, "MIN_DATE": "1976-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.107833, 45.910833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74097001, "NOM_USUEL": "CUSY CHEF LIEU", "LAT": 45.766667, "LON": 6.028333, "ALTI": 575, "MIN_DATE": "1959-04-01", "MAX_DATE": "1980-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.028333, 45.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74104001, "NOM_USUEL": "DOUSSARD", "LAT": 45.783333, "LON": 6.225, "ALTI": 465, "MIN_DATE": "1991-03-01", "MAX_DATE": "1998-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.225, 45.783333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74105002, "NOM_USUEL": "DOUVAINE SA", "LAT": 46.302333, "LON": 6.318333, "ALTI": 470, "MIN_DATE": "2009-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.318333, 46.302333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74110001, "NOM_USUEL": "ENTREMONT", "LAT": 45.953333, "LON": 6.393, "ALTI": 830, "MIN_DATE": "1998-03-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.393, 45.953333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74116002, "NOM_USUEL": "ETEAUX", "LAT": 46.063, "LON": 6.275667, "ALTI": 805, "MIN_DATE": "1992-10-01", "MAX_DATE": "2016-04-01" }, "geometry": { "type": "Point", "coordinates": [ 6.275667, 46.063 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74117001, "NOM_USUEL": "ETERCY", "LAT": 45.89, "LON": 6.01, "ALTI": 512, "MIN_DATE": "1986-01-01", "MAX_DATE": "2003-10-12" }, "geometry": { "type": "Point", "coordinates": [ 6.01, 45.89 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74119002, "NOM_USUEL": "EVIAN", "LAT": 46.3965, "LON": 6.5665, "ALTI": 395, "MIN_DATE": "1990-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.5665, 46.3965 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74119003, "NOM_USUEL": "EVIAN SA", "LAT": 46.382333, "LON": 6.5825, "ALTI": 725, "MIN_DATE": "2002-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.5825, 46.382333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74123002, "NOM_USUEL": "FAVERGES", "LAT": 45.753333, "LON": 6.281833, "ALTI": 507, "MIN_DATE": "1994-07-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.281833, 45.753333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74133001, "NOM_USUEL": "GAILLARD", "LAT": 46.176, "LON": 6.210333, "ALTI": 399, "MIN_DATE": "1987-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.210333, 46.176 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74134400, "NOM_USUEL": "Les Gets", "LAT": 46.165833, "LON": 6.659167, "ALTI": 1530, "MIN_DATE": "1988-01-18", "MAX_DATE": "2024-03-18" }, "geometry": { "type": "Point", "coordinates": [ 6.659167, 46.165833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74135001, "NOM_USUEL": "GIEZ", "LAT": 45.762667, "LON": 6.255333, "ALTI": 478, "MIN_DATE": "2008-06-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.255333, 45.762667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74136002, "NOM_USUEL": "GRAND-BORNAND", "LAT": 45.941667, "LON": 6.426667, "ALTI": 1200, "MIN_DATE": "1966-01-01", "MAX_DATE": "1968-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.426667, 45.941667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74136003, "NOM_USUEL": "GRAND BORNAND", "LAT": 45.970333, "LON": 6.444667, "ALTI": 1300, "MIN_DATE": "1968-05-01", "MAX_DATE": "2024-03-01" }, "geometry": { "type": "Point", "coordinates": [ 6.444667, 45.970333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74136005, "NOM_USUEL": "LE GRAND-BORNAND", "LAT": 45.973333, "LON": 6.471833, "ALTI": 1430, "MIN_DATE": "2005-08-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.471833, 45.973333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74136400, "NOM_USUEL": "Le Grand Bornand", "LAT": 45.972, "LON": 6.454167, "ALTI": 1270, "MIN_DATE": "1985-12-16", "MAX_DATE": "2022-04-05" }, "geometry": { "type": "Point", "coordinates": [ 6.454167, 45.972 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74137001, "NOM_USUEL": "GROISY_SAPC", "LAT": 46.012667, "LON": 6.1745, "ALTI": 670, "MIN_DATE": "1963-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.1745, 46.012667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74140001, "NOM_USUEL": "HABERE-POCHE", "LAT": 46.246667, "LON": 6.491667, "ALTI": 1093, "MIN_DATE": "1950-01-01", "MAX_DATE": "1979-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.491667, 46.246667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74140002, "NOM_USUEL": "HABERE-POCHE", "LAT": 46.251667, "LON": 6.473333, "ALTI": 960, "MIN_DATE": "1993-11-23", "MAX_DATE": "2000-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.473333, 46.251667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74173400, "NOM_USUEL": "MEGEVE AUXI", "LAT": 45.855667, "LON": 6.608, "ALTI": 1080, "MIN_DATE": "1984-01-30", "MAX_DATE": "2018-12-02" }, "geometry": { "type": "Point", "coordinates": [ 6.608, 45.855667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74176001, "NOM_USUEL": "MENTHON-SAINT-BERNARD ECOLE", "LAT": 45.86, "LON": 6.195, "ALTI": 480, "MIN_DATE": "1950-06-01", "MAX_DATE": "1960-10-20" }, "geometry": { "type": "Point", "coordinates": [ 6.195, 45.86 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74182001, "NOM_USUEL": "MEYTHET", "LAT": 45.928167, "LON": 6.094, "ALTI": 455, "MIN_DATE": "1970-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.094, 45.928167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74185001, "NOM_USUEL": "MONNETIER-MORNEX TREIZE ARBRES", "LAT": 46.16, "LON": 6.206667, "ALTI": 1146, "MIN_DATE": "1951-01-01", "MAX_DATE": "1963-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.206667, 46.16 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74185002, "NOM_USUEL": "MONNETIER-MORNEX EGLISE", "LAT": 46.16, "LON": 6.206667, "ALTI": 700, "MIN_DATE": "1953-06-01", "MAX_DATE": "1955-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.206667, 46.16 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74189001, "NOM_USUEL": "MONT-SAXONNEX", "LAT": 46.048167, "LON": 6.483333, "ALTI": 990, "MIN_DATE": "1992-10-01", "MAX_DATE": "2013-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.483333, 46.048167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74191001, "NOM_USUEL": "MORZINE", "LAT": 46.178333, "LON": 6.708333, "ALTI": 960, "MIN_DATE": "1955-01-01", "MAX_DATE": "1996-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.708333, 46.178333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74191003, "NOM_USUEL": "LE PLENEY", "LAT": 46.168333, "LON": 6.692833, "ALTI": 1515, "MIN_DATE": "1995-10-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.692833, 46.168333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74191400, "NOM_USUEL": "Morzine", "LAT": 46.18, "LON": 6.71, "ALTI": 960, "MIN_DATE": "1983-12-12", "MAX_DATE": "1996-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.71, 46.18 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74191406, "NOM_USUEL": "Avoriaz", "LAT": 46.186167, "LON": 6.779833, "ALTI": 1768, "MIN_DATE": "2000-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.779833, 46.186167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74193001, "NOM_USUEL": "LA CROISETTE", "LAT": 46.119167, "LON": 6.171167, "ALTI": 1175, "MIN_DATE": "1994-07-01", "MAX_DATE": "2008-12-01" }, "geometry": { "type": "Point", "coordinates": [ 6.171167, 46.119167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74208004, "NOM_USUEL": "PASSY", "LAT": 45.951667, "LON": 6.731667, "ALTI": 1300, "MIN_DATE": "1986-08-01", "MAX_DATE": "1994-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.731667, 45.951667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74208005, "NOM_USUEL": "CHEDDE", "LAT": 45.923333, "LON": 6.73, "ALTI": 610, "MIN_DATE": "1992-01-01", "MAX_DATE": "2000-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.73, 45.923333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74210001, "NOM_USUEL": "PERRIGNIER", "LAT": 46.311667, "LON": 6.455, "ALTI": 630, "MIN_DATE": "1991-03-01", "MAX_DATE": "1993-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.455, 46.311667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74211002, "NOM_USUEL": "PERS JUSSY", "LAT": 46.098, "LON": 6.2605, "ALTI": 747, "MIN_DATE": "1998-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.2605, 46.098 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74213001, "NOM_USUEL": "POISY", "LAT": 45.915, "LON": 6.07, "ALTI": 500, "MIN_DATE": "1981-01-01", "MAX_DATE": "1997-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.07, 45.915 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74221001, "NOM_USUEL": "REPOSOIR (LE)", "LAT": 46.011333, "LON": 6.5355, "ALTI": 975, "MIN_DATE": "1952-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.5355, 46.011333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74228001, "NOM_USUEL": "MONT SION", "LAT": 46.075, "LON": 6.086667, "ALTI": 785, "MIN_DATE": "1991-03-01", "MAX_DATE": "1995-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.086667, 46.075 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74229001, "NOM_USUEL": "SAINT-CERGUES LE BOURGEAU", "LAT": 46.235, "LON": 6.321667, "ALTI": 615, "MIN_DATE": "1980-01-01", "MAX_DATE": "1984-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.321667, 46.235 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74236001, "NOM_USUEL": "SAINT-GERVAIS-LES-BAINS", "LAT": 45.886667, "LON": 6.713333, "ALTI": 810, "MIN_DATE": "1950-07-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.713333, 45.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74236002, "NOM_USUEL": "MONT ARBOIS", "LAT": 45.855333, "LON": 6.669, "ALTI": 1833, "MIN_DATE": "1992-06-27", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.669, 45.855333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74241001, "NOM_USUEL": "ST JEOIRE", "LAT": 46.136667, "LON": 6.477, "ALTI": 535, "MIN_DATE": "1991-03-01", "MAX_DATE": "2008-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.477, 46.136667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74242001, "NOM_USUEL": "ST JORIOZ", "LAT": 45.826667, "LON": 6.153333, "ALTI": 460, "MIN_DATE": "1950-01-01", "MAX_DATE": "1980-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.153333, 45.826667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74252001, "NOM_USUEL": "ST SIGISMOND", "LAT": 46.076333, "LON": 6.612167, "ALTI": 1020, "MIN_DATE": "1993-10-01", "MAX_DATE": "2024-04-04" }, "geometry": { "type": "Point", "coordinates": [ 6.612167, 46.076333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74263001, "NOM_USUEL": "SCIEZ", "LAT": 46.331667, "LON": 6.378333, "ALTI": 413, "MIN_DATE": "1991-06-01", "MAX_DATE": "2008-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.378333, 46.331667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74266001, "NOM_USUEL": "SERVOZ", "LAT": 45.931167, "LON": 6.767333, "ALTI": 815, "MIN_DATE": "1992-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.767333, 45.931167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74270400, "NOM_USUEL": "Seythenex", "LAT": 45.713, "LON": 6.276333, "ALTI": 1159, "MIN_DATE": "2002-12-09", "MAX_DATE": "2023-02-21" }, "geometry": { "type": "Point", "coordinates": [ 6.276333, 45.713 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74276001, "NOM_USUEL": "TANINGES", "LAT": 46.108333, "LON": 6.578333, "ALTI": 630, "MIN_DATE": "1962-08-01", "MAX_DATE": "1977-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.578333, 46.108333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74281002, "NOM_USUEL": "THONON", "LAT": 46.366667, "LON": 6.483333, "ALTI": 410, "MIN_DATE": "1973-01-01", "MAX_DATE": "1989-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.483333, 46.366667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74285002, "NOM_USUEL": "USINENS SA", "LAT": 46.013, "LON": 5.8445, "ALTI": 452, "MIN_DATE": "2004-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.8445, 46.013 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74286001, "NOM_USUEL": "VACHERESSE", "LAT": 46.316333, "LON": 6.669833, "ALTI": 790, "MIN_DATE": "1983-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.669833, 46.316333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74286400, "NOM_USUEL": "VACHERESSE AUXI", "LAT": 46.315333, "LON": 6.673333, "ALTI": 790, "MIN_DATE": "2001-08-02", "MAX_DATE": "2024-04-03" }, "geometry": { "type": "Point", "coordinates": [ 6.673333, 46.315333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74290002, "NOM_USUEL": "VALLORCINE_PLAN-DROIT", "LAT": 46.0205, "LON": 6.919167, "ALTI": 1326, "MIN_DATE": "1950-01-01", "MAX_DATE": "2022-10-05" }, "geometry": { "type": "Point", "coordinates": [ 6.919167, 46.0205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74290003, "NOM_USUEL": "VALLORCINE", "LAT": 46.0205, "LON": 6.919167, "ALTI": 1326, "MIN_DATE": "2022-10-07", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.919167, 46.0205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74292001, "NOM_USUEL": "VAULX", "LAT": 45.918, "LON": 5.994667, "ALTI": 520, "MIN_DATE": "2004-09-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.994667, 45.918 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74310001, "NOM_USUEL": "SEMNOZ", "LAT": 45.801667, "LON": 6.11, "ALTI": 1666, "MIN_DATE": "1995-02-01", "MAX_DATE": "1998-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.11, 45.801667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74500001, "NOM_USUEL": "GENEVE", "LAT": 46.247333, "LON": 6.127667, "ALTI": 411, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.127667, 46.247333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74056421, "NOM_USUEL": "COUVERCLE-NIVOSE", "LAT": 45.909667, "LON": 6.958833, "ALTI": 2758, "MIN_DATE": "2023-09-07", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.958833, 45.909667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74080404, "NOM_USUEL": "LA CLUSAZ", "LAT": 45.900833, "LON": 6.4855, "ALTI": 1965, "MIN_DATE": "2024-03-04", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.4855, 45.900833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 74136403, "NOM_USUEL": "GRAND-BORNAND", "LAT": 45.958167, "LON": 6.456167, "ALTI": 1447, "MIN_DATE": "2023-03-20", "MAX_DATE": "2024-03-30" }, "geometry": { "type": "Point", "coordinates": [ 6.456167, 45.958167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30003001, "NOM_USUEL": "AIGUES-MORTES", "LAT": 43.537167, "LON": 4.207, "ALTI": 1, "MIN_DATE": "1872-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.207, 43.537167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30007001, "NOM_USUEL": "ALES", "LAT": 44.116667, "LON": 4.083333, "ALTI": 135, "MIN_DATE": "1941-01-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.083333, 44.116667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30007002, "NOM_USUEL": "ALES LA PRAIRIE", "LAT": 44.128333, "LON": 4.08, "ALTI": 140, "MIN_DATE": "1887-01-01", "MAX_DATE": "1973-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.08, 44.128333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30007005, "NOM_USUEL": "ALES AGGLOMERATION", "LAT": 44.123333, "LON": 4.075, "ALTI": 140, "MIN_DATE": "1885-06-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.075, 44.123333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30009002, "NOM_USUEL": "ALZON CAZEBONNE", "LAT": 43.966667, "LON": 3.44, "ALTI": 800, "MIN_DATE": "1928-01-01", "MAX_DATE": "1960-10-31" }, "geometry": { "type": "Point", "coordinates": [ 3.44, 43.966667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30009013, "NOM_USUEL": "ALZON AGGLOMERATION", "LAT": 43.966667, "LON": 3.44, "ALTI": 595, "MIN_DATE": "1887-02-01", "MAX_DATE": "1889-09-30" }, "geometry": { "type": "Point", "coordinates": [ 3.44, 43.966667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30010001, "NOM_USUEL": "ANDUZE AGGLOMERATION", "LAT": 44.053333, "LON": 3.986667, "ALTI": 138, "MIN_DATE": "1887-01-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.986667, 44.053333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30012001, "NOM_USUEL": "ARAMON ROUTE DE THEZIERS", "LAT": 43.89, "LON": 4.681667, "ALTI": 14, "MIN_DATE": "1887-06-01", "MAX_DATE": "1974-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.681667, 43.89 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30015001, "NOM_USUEL": "ARPHY", "LAT": 44.026667, "LON": 3.593333, "ALTI": 500, "MIN_DATE": "1928-01-01", "MAX_DATE": "1940-02-29" }, "geometry": { "type": "Point", "coordinates": [ 3.593333, 44.026667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30017001, "NOM_USUEL": "ARRIGAS LE PONT", "LAT": 43.988333, "LON": 3.48, "ALTI": 500, "MIN_DATE": "1938-03-01", "MAX_DATE": "1963-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.48, 43.988333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30017002, "NOM_USUEL": "ARRIGAS SANATORIUM", "LAT": 43.988333, "LON": 3.48, "ALTI": 850, "MIN_DATE": "1903-01-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.48, 43.988333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30025001, "NOM_USUEL": "AUMESSAS ECOLE PUBLIQUE", "LAT": 43.991667, "LON": 3.503333, "ALTI": 500, "MIN_DATE": "1889-10-01", "MAX_DATE": "1891-07-31" }, "geometry": { "type": "Point", "coordinates": [ 3.503333, 43.991667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30028001, "NOM_USUEL": "BAGNOLS", "LAT": 44.166667, "LON": 4.616667, "ALTI": 50, "MIN_DATE": "1938-01-01", "MAX_DATE": "1971-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.616667, 44.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30028002, "NOM_USUEL": "BAGNOLS-SUR-CEZE", "LAT": 44.161667, "LON": 4.62, "ALTI": 48, "MIN_DATE": "1885-06-01", "MAX_DATE": "1951-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.62, 44.161667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30029001, "NOM_USUEL": "BARJAC AGGLOMERATION", "LAT": 44.308333, "LON": 4.35, "ALTI": 180, "MIN_DATE": "1886-12-01", "MAX_DATE": "1934-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.35, 44.308333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30032001, "NOM_USUEL": "BEAUCAIRE", "LAT": 43.81, "LON": 4.645, "ALTI": 10, "MIN_DATE": "1944-03-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.645, 43.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30032002, "NOM_USUEL": "BEAUCAIRE CMD", "LAT": 43.81, "LON": 4.641667, "ALTI": 10, "MIN_DATE": "1885-06-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.641667, 43.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30032003, "NOM_USUEL": "BEAUCAIRE MR PUGNET", "LAT": 43.81, "LON": 4.641667, "ALTI": 12, "MIN_DATE": "1902-01-01", "MAX_DATE": "1931-05-30" }, "geometry": { "type": "Point", "coordinates": [ 4.641667, 43.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30034004, "NOM_USUEL": "BELLEGARDE BOURG", "LAT": 43.755, "LON": 4.513333, "ALTI": 53, "MIN_DATE": "1877-01-01", "MAX_DATE": "1878-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.513333, 43.755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30037001, "NOM_USUEL": "BESSEGES", "LAT": 44.3, "LON": 4.1, "ALTI": 170, "MIN_DATE": "1886-11-01", "MAX_DATE": "1985-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.1, 44.3 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30040001, "NOM_USUEL": "BLANDAS AGGLOMERATION", "LAT": 43.913333, "LON": 3.511667, "ALTI": 655, "MIN_DATE": "1885-06-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.511667, 43.913333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30052001, "NOM_USUEL": "BREAU-ET-SALAGOSSE", "LAT": 43.988333, "LON": 3.57, "ALTI": 1000, "MIN_DATE": "1928-01-01", "MAX_DATE": "1974-06-30" }, "geometry": { "type": "Point", "coordinates": [ 3.57, 43.988333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30052002, "NOM_USUEL": "BREAU-ET-SALAGOSSE", "LAT": 43.988333, "LON": 3.571667, "ALTI": 1000, "MIN_DATE": "1928-01-01", "MAX_DATE": "1939-04-30" }, "geometry": { "type": "Point", "coordinates": [ 3.571667, 43.988333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30064001, "NOM_USUEL": "CAMPESTRE-ET-LUC AGGLOMERATION", "LAT": 43.953333, "LON": 3.418333, "ALTI": 769, "MIN_DATE": "1892-05-01", "MAX_DATE": "1924-05-31" }, "geometry": { "type": "Point", "coordinates": [ 3.418333, 43.953333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30065001, "NOM_USUEL": "CANAULES-ET-ARGENTIERES", "LAT": 43.981833, "LON": 4.046, "ALTI": 101, "MIN_DATE": "1946-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.046, 43.981833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30112001, "NOM_USUEL": "FONS", "LAT": 43.907667, "LON": 4.1945, "ALTI": 114, "MIN_DATE": "1887-12-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.1945, 43.907667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30128001, "NOM_USUEL": "GENERAC", "LAT": 43.7285, "LON": 4.343333, "ALTI": 72, "MIN_DATE": "1932-06-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.343333, 43.7285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30129001, "NOM_USUEL": "GENERARGUES", "LAT": 44.073333, "LON": 3.977667, "ALTI": 139, "MIN_DATE": "1938-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.977667, 44.073333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30130001, "NOM_USUEL": "GENOLHAC", "LAT": 44.342833, "LON": 3.9615, "ALTI": 519, "MIN_DATE": "1887-01-01", "MAX_DATE": "2022-01-02" }, "geometry": { "type": "Point", "coordinates": [ 3.9615, 44.342833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30132001, "NOM_USUEL": "LA GRAND-COMBE VILLE", "LAT": 44.213333, "LON": 4.033333, "ALTI": 200, "MIN_DATE": "1944-01-01", "MAX_DATE": "1974-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.033333, 44.213333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30132002, "NOM_USUEL": "LA GRAND COMBE", "LAT": 44.245, "LON": 4.023333, "ALTI": 415, "MIN_DATE": "1885-06-01", "MAX_DATE": "1992-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.023333, 44.245 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30133001, "NOM_USUEL": "LE GRAU DU ROI", "LAT": 43.496, "LON": 4.137167, "ALTI": 1, "MIN_DATE": "1924-02-01", "MAX_DATE": "2010-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.137167, 43.496 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30133004, "NOM_USUEL": "LE GRAU-DU-ROI AGGLOMERATION", "LAT": 43.535, "LON": 4.136667, "ALTI": 2, "MIN_DATE": "1887-03-01", "MAX_DATE": "1924-01-31" }, "geometry": { "type": "Point", "coordinates": [ 4.136667, 43.535 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30140001, "NOM_USUEL": "LASALLE", "LAT": 44.043333, "LON": 3.863333, "ALTI": 278, "MIN_DATE": "1887-01-01", "MAX_DATE": "2009-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.863333, 44.043333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30141001, "NOM_USUEL": "LAUDUN ECOLE", "LAT": 44.105, "LON": 4.658333, "ALTI": 64, "MIN_DATE": "1946-01-01", "MAX_DATE": "1946-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.658333, 44.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30141002, "NOM_USUEL": "LAUDUN M. BAILLE", "LAT": 44.106667, "LON": 4.658333, "ALTI": 64, "MIN_DATE": "1885-06-01", "MAX_DATE": "1887-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.658333, 44.106667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30145001, "NOM_USUEL": "LEDENON AGGLOMERATION", "LAT": 43.916667, "LON": 4.506667, "ALTI": 102, "MIN_DATE": "1887-06-21", "MAX_DATE": "1937-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.506667, 43.916667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30146002, "NOM_USUEL": "LEDIGNAN AGGLOMERATION", "LAT": 43.986667, "LON": 4.105, "ALTI": 150, "MIN_DATE": "1887-01-01", "MAX_DATE": "1920-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.105, 43.986667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30151001, "NOM_USUEL": "LUSSAN", "LAT": 44.158333, "LON": 4.358333, "ALTI": 250, "MIN_DATE": "1942-03-01", "MAX_DATE": "1980-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.358333, 44.158333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30151003, "NOM_USUEL": "LUSSAN CHATEAU", "LAT": 44.153333, "LON": 4.366667, "ALTI": 300, "MIN_DATE": "1886-03-01", "MAX_DATE": "1945-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.366667, 44.153333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30153001, "NOM_USUEL": "MALONS ET ELZE", "LAT": 44.428333, "LON": 4.001667, "ALTI": 803, "MIN_DATE": "1885-06-01", "MAX_DATE": "2001-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.001667, 44.428333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30176001, "NOM_USUEL": "MONTDARDIER BOURG", "LAT": 43.926667, "LON": 3.591667, "ALTI": 500, "MIN_DATE": "1926-01-01", "MAX_DATE": "1928-02-29" }, "geometry": { "type": "Point", "coordinates": [ 3.591667, 43.926667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30188001, "NOM_USUEL": "NERS VILLAGE", "LAT": 44.026667, "LON": 4.16, "ALTI": 94, "MIN_DATE": "1932-04-01", "MAX_DATE": "1947-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.16, 44.026667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189001, "NOM_USUEL": "NIMES-COURBESSAC", "LAT": 43.856833, "LON": 4.406333, "ALTI": 59, "MIN_DATE": "1922-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.406333, 43.856833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189002, "NOM_USUEL": "NIMES-PONGE", "LAT": 43.866, "LON": 4.302833, "ALTI": 164, "MIN_DATE": "1932-06-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.302833, 43.866 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189003, "NOM_USUEL": "NIMES ECOLE NORMALE", "LAT": 43.838333, "LON": 4.36, "ALTI": 57, "MIN_DATE": "1872-01-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.36, 43.838333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189004, "NOM_USUEL": "NIMES MAISON CENTRALE", "LAT": 43.838333, "LON": 4.36, "ALTI": 73, "MIN_DATE": "1885-06-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.36, 43.838333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189005, "NOM_USUEL": "NIMES FONTAINE OENOLOGIQUE", "LAT": 43.838333, "LON": 4.36, "ALTI": 60, "MIN_DATE": "1897-01-01", "MAX_DATE": "1944-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.36, 43.838333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189010, "NOM_USUEL": "NIMES CHAMP D'EXPERIENCES", "LAT": 43.838333, "LON": 4.36, "ALTI": 40, "MIN_DATE": "1896-04-01", "MAX_DATE": "1897-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.36, 43.838333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189011, "NOM_USUEL": "NIMES PC - M. TADAREL", "LAT": 43.838333, "LON": 4.36, "ALTI": 40, "MIN_DATE": "1945-01-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.36, 43.838333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30190001, "NOM_USUEL": "NOTRE-DAME-DE-LA-ROUVIERE", "LAT": 44.046667, "LON": 3.7, "ALTI": 905, "MIN_DATE": "1902-12-01", "MAX_DATE": "1907-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.7, 44.046667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30202001, "NOM_USUEL": "PONT-SAINT-ESPRIT", "LAT": 44.256667, "LON": 4.643333, "ALTI": 65, "MIN_DATE": "1887-01-01", "MAX_DATE": "1982-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.643333, 44.256667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30209001, "NOM_USUEL": "PUJAUT", "LAT": 44.005, "LON": 4.775, "ALTI": 110, "MIN_DATE": "1923-07-01", "MAX_DATE": "1937-01-31" }, "geometry": { "type": "Point", "coordinates": [ 4.775, 44.005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30210001, "NOM_USUEL": "QUISSAC", "LAT": 43.915, "LON": 4.003333, "ALTI": 90, "MIN_DATE": "1919-01-01", "MAX_DATE": "1992-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.003333, 43.915 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30210002, "NOM_USUEL": "QUISSAC CAUVIAC", "LAT": 43.908333, "LON": 4.0, "ALTI": 153, "MIN_DATE": "1887-01-01", "MAX_DATE": "1906-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.0, 43.908333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30212001, "NOM_USUEL": "REMOULINS", "LAT": 43.937167, "LON": 4.558833, "ALTI": 24, "MIN_DATE": "1887-01-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.558833, 43.937167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30217001, "NOM_USUEL": "ROCHEFORT-DU-GARD", "LAT": 43.975, "LON": 4.69, "ALTI": 56, "MIN_DATE": "1887-04-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.69, 43.975 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30221001, "NOM_USUEL": "ROQUEMAURE", "LAT": 44.046667, "LON": 4.783333, "ALTI": 25, "MIN_DATE": "1887-01-01", "MAX_DATE": "2006-01-01" }, "geometry": { "type": "Point", "coordinates": [ 4.783333, 44.046667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30227001, "NOM_USUEL": "ST AMBROIX", "LAT": 44.256667, "LON": 4.21, "ALTI": 139, "MIN_DATE": "1887-01-01", "MAX_DATE": "2003-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.21, 44.256667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30231001, "NOM_USUEL": "ST-ANDRE-DE-VALEBORGNE", "LAT": 44.156667, "LON": 3.683333, "ALTI": 450, "MIN_DATE": "1887-03-01", "MAX_DATE": "2007-09-30" }, "geometry": { "type": "Point", "coordinates": [ 3.683333, 44.156667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30241001, "NOM_USUEL": "SAINT-CHAPTES AGGLOMERATION", "LAT": 43.97, "LON": 4.278333, "ALTI": 72, "MIN_DATE": "1887-01-01", "MAX_DATE": "1933-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.278333, 43.97 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30243001, "NOM_USUEL": "ST CHRISTOL-LES-ALES", "LAT": 44.092167, "LON": 4.080333, "ALTI": 129, "MIN_DATE": "1949-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.080333, 44.092167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30255001, "NOM_USUEL": "SAINT-GENIES-DE-MALGOIRES", "LAT": 43.945, "LON": 4.216667, "ALTI": 86, "MIN_DATE": "1926-03-01", "MAX_DATE": "1967-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.216667, 43.945 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30258004, "NOM_USUEL": "SAINT-GILLES AGGLOMERATION", "LAT": 43.678333, "LON": 4.433333, "ALTI": 21, "MIN_DATE": "1887-01-01", "MAX_DATE": "1942-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.433333, 43.678333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30263001, "NOM_USUEL": "ST HIPPOLYTE", "LAT": 43.9615, "LON": 3.835167, "ALTI": 237, "MIN_DATE": "1894-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.835167, 43.9615 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30263002, "NOM_USUEL": "SAINT-HIPPOLYTE-DU-FORT BOURG", "LAT": 43.963333, "LON": 3.856667, "ALTI": 164, "MIN_DATE": "1887-01-02", "MAX_DATE": "1946-04-30" }, "geometry": { "type": "Point", "coordinates": [ 3.856667, 43.963333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30269001, "NOM_USUEL": "SAINT-JEAN-DU-GARD-GARE", "LAT": 44.105, "LON": 3.885, "ALTI": 185, "MIN_DATE": "1887-01-01", "MAX_DATE": "1971-09-30" }, "geometry": { "type": "Point", "coordinates": [ 3.885, 44.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30269002, "NOM_USUEL": "ST JEAN DU GARD", "LAT": 44.111667, "LON": 3.881667, "ALTI": 220, "MIN_DATE": "1894-07-01", "MAX_DATE": "1995-11-30" }, "geometry": { "type": "Point", "coordinates": [ 3.881667, 44.111667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30287001, "NOM_USUEL": "SAINT-MICHEL-D'EUZET", "LAT": 44.201667, "LON": 4.545, "ALTI": 280, "MIN_DATE": "1946-08-17", "MAX_DATE": "1972-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.545, 44.201667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30290001, "NOM_USUEL": "SAINT-PAULET-DE-CAISSON", "LAT": 44.263333, "LON": 4.596667, "ALTI": 90, "MIN_DATE": "1945-12-01", "MAX_DATE": "1953-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.596667, 44.263333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30297002, "NOM_USUEL": "SAINT-SAUVEUR-CAMPRIEU", "LAT": 44.115, "LON": 3.446667, "ALTI": 934, "MIN_DATE": "1885-08-01", "MAX_DATE": "1963-05-31" }, "geometry": { "type": "Point", "coordinates": [ 3.446667, 44.115 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30305001, "NOM_USUEL": "SALINDRES", "LAT": 44.1745, "LON": 4.1525, "ALTI": 191, "MIN_DATE": "1915-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.1525, 44.1745 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30315001, "NOM_USUEL": "SAZE ECOLE", "LAT": 43.941667, "LON": 4.681667, "ALTI": 65, "MIN_DATE": "1943-09-01", "MAX_DATE": "1944-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.681667, 43.941667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30321001, "NOM_USUEL": "SOMMIERES", "LAT": 43.783333, "LON": 4.088333, "ALTI": 29, "MIN_DATE": "1886-12-01", "MAX_DATE": "1969-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.088333, 43.783333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30332002, "NOM_USUEL": "TREVES AGGLOMERATION", "LAT": 44.078333, "LON": 3.39, "ALTI": 525, "MIN_DATE": "1897-01-01", "MAX_DATE": "1914-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.39, 44.078333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30334001, "NOM_USUEL": "UZES", "LAT": 44.005, "LON": 4.42, "ALTI": 138, "MIN_DATE": "1887-01-01", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.42, 44.005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30334002, "NOM_USUEL": "UZES AGGLO", "LAT": 44.015, "LON": 4.42, "ALTI": 126, "MIN_DATE": "1885-06-01", "MAX_DATE": "1948-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.42, 44.015 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30339001, "NOM_USUEL": "MONT AIGOUAL", "LAT": 44.121333, "LON": 3.5815, "ALTI": 1567, "MIN_DATE": "1896-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.5815, 44.121333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30339002, "NOM_USUEL": "VALLERAUGUE", "LAT": 44.08, "LON": 3.641667, "ALTI": 395, "MIN_DATE": "1885-06-01", "MAX_DATE": "1971-03-31" }, "geometry": { "type": "Point", "coordinates": [ 3.641667, 44.08 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30339003, "NOM_USUEL": "VALLERAUGUE LA SEYRREREDES", "LAT": 44.08, "LON": 3.641667, "ALTI": 1300, "MIN_DATE": "1903-04-01", "MAX_DATE": "1921-07-31" }, "geometry": { "type": "Point", "coordinates": [ 3.641667, 44.08 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30341002, "NOM_USUEL": "VAUVERT MAS DE GIRAU", "LAT": 43.691667, "LON": 4.275, "ALTI": 18, "MIN_DATE": "1943-04-01", "MAX_DATE": "1946-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.275, 43.691667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30341004, "NOM_USUEL": "VAUVERT AGGLOMERATION", "LAT": 43.691667, "LON": 4.275, "ALTI": 18, "MIN_DATE": "1887-01-01", "MAX_DATE": "1905-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.275, 43.691667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30348001, "NOM_USUEL": "VEZENOBRES AGGLOMERATION", "LAT": 44.051667, "LON": 4.136667, "ALTI": 213, "MIN_DATE": "1887-01-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.136667, 44.051667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30350001, "NOM_USUEL": "LE VIGAN", "LAT": 43.99, "LON": 3.6115, "ALTI": 222, "MIN_DATE": "1894-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.6115, 43.99 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30350003, "NOM_USUEL": "LE VIGAN LES COMBES", "LAT": 43.988333, "LON": 3.603333, "ALTI": 252, "MIN_DATE": "1885-06-01", "MAX_DATE": "1961-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.603333, 43.988333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30004001, "NOM_USUEL": "AIGUES-VIVES", "LAT": 43.713333, "LON": 4.208333, "ALTI": 12, "MIN_DATE": "1971-01-01", "MAX_DATE": "2000-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.208333, 43.713333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30007004, "NOM_USUEL": "ALES", "LAT": 44.155, "LON": 4.06, "ALTI": 143, "MIN_DATE": "1991-01-01", "MAX_DATE": "2012-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.06, 44.155 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30009001, "NOM_USUEL": "ALZON", "LAT": 43.979, "LON": 3.444, "ALTI": 611, "MIN_DATE": "1950-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.444, 43.979 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30010002, "NOM_USUEL": "ANDUZE RMC", "LAT": 44.053333, "LON": 3.986667, "ALTI": 132, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-03-31" }, "geometry": { "type": "Point", "coordinates": [ 3.986667, 44.053333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30012002, "NOM_USUEL": "ARAMON USINE", "LAT": 43.89, "LON": 4.681667, "ALTI": 25, "MIN_DATE": "1966-05-01", "MAX_DATE": "1972-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.681667, 43.89 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30012003, "NOM_USUEL": "ARAMON", "LAT": 43.885, "LON": 4.646667, "ALTI": 12, "MIN_DATE": "1973-03-01", "MAX_DATE": "1992-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.646667, 43.885 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30015002, "NOM_USUEL": "ARPHY", "LAT": 44.017667, "LON": 3.595, "ALTI": 427, "MIN_DATE": "1989-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.595, 44.017667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30022001, "NOM_USUEL": "AUJAC RMC", "LAT": 44.348333, "LON": 4.015, "ALTI": 500, "MIN_DATE": "1972-06-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.015, 44.348333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30026001, "NOM_USUEL": "AVEZE LA FABREGUE", "LAT": 43.971667, "LON": 3.6, "ALTI": 260, "MIN_DATE": "1962-08-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.6, 43.971667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30032004, "NOM_USUEL": "BEAUCAIRE MAS SAINT-PAUL", "LAT": 43.81, "LON": 4.641667, "ALTI": 18, "MIN_DATE": "1960-01-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.641667, 43.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30032005, "NOM_USUEL": "BEAUCAIRE", "LAT": 43.81, "LON": 4.641667, "ALTI": 18, "MIN_DATE": "1963-11-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.641667, 43.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30032006, "NOM_USUEL": "BEAUCAIRE USINE PROCIDA", "LAT": 43.81, "LON": 4.641667, "ALTI": 5, "MIN_DATE": "1950-01-01", "MAX_DATE": "1955-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.641667, 43.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30034001, "NOM_USUEL": "BELLEGARDE BRIQUET", "LAT": 43.755, "LON": 4.515, "ALTI": 3, "MIN_DATE": "1971-01-01", "MAX_DATE": "1973-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.515, 43.755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30034003, "NOM_USUEL": "BELLEGARDE", "LAT": 43.78, "LON": 4.48, "ALTI": 45, "MIN_DATE": "1989-01-01", "MAX_DATE": "2005-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.48, 43.78 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30047001, "NOM_USUEL": "BOUILLARGUES", "LAT": 43.798333, "LON": 4.426667, "ALTI": 57, "MIN_DATE": "1975-01-01", "MAX_DATE": "1999-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.426667, 43.798333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30055001, "NOM_USUEL": "BROUZET LES ALES", "LAT": 44.131167, "LON": 4.284833, "ALTI": 603, "MIN_DATE": "2011-01-11", "MAX_DATE": "2022-01-02" }, "geometry": { "type": "Point", "coordinates": [ 4.284833, 44.131167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30058001, "NOM_USUEL": "LA CADIERE-ET-CAMBO", "LAT": 43.978333, "LON": 3.803333, "ALTI": 540, "MIN_DATE": "1957-01-01", "MAX_DATE": "1963-10-29" }, "geometry": { "type": "Point", "coordinates": [ 3.803333, 43.978333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30059001, "NOM_USUEL": "LE CAILAR DOMAINE DE LAMONADE", "LAT": 43.673333, "LON": 4.235, "ALTI": 7, "MIN_DATE": "1951-01-01", "MAX_DATE": "1952-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.235, 43.673333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30061001, "NOM_USUEL": "CALMETTE", "LAT": 43.95, "LON": 4.25, "ALTI": 70, "MIN_DATE": "1968-01-01", "MAX_DATE": "1985-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.25, 43.95 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30068001, "NOM_USUEL": "CARDET", "LAT": 44.021, "LON": 4.079667, "ALTI": 109, "MIN_DATE": "1968-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.079667, 44.021 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30076001, "NOM_USUEL": "CAVILLARGUES", "LAT": 44.113, "LON": 4.518667, "ALTI": 131, "MIN_DATE": "1960-07-07", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.518667, 44.113 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30081001, "NOM_USUEL": "CHUSCLAN", "LAT": 44.143333, "LON": 4.7, "ALTI": 63, "MIN_DATE": "1959-01-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.7, 44.143333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30081002, "NOM_USUEL": "CHUSCLAN", "LAT": 44.134833, "LON": 4.708333, "ALTI": 30, "MIN_DATE": "1991-01-01", "MAX_DATE": "2021-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.708333, 44.134833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30087001, "NOM_USUEL": "COLOGNAC RMC", "LAT": 44.028333, "LON": 3.823333, "ALTI": 680, "MIN_DATE": "1967-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.823333, 44.028333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30087002, "NOM_USUEL": "COLOGNAC", "LAT": 44.021833, "LON": 3.825, "ALTI": 589, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.825, 44.021833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30089001, "NOM_USUEL": "COMPS", "LAT": 43.85, "LON": 4.6, "ALTI": 12, "MIN_DATE": "1966-11-01", "MAX_DATE": "1984-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.6, 43.85 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30093001, "NOM_USUEL": "CONQUEYRAC BARRAGE DE CEYRAC", "LAT": 43.946667, "LON": 3.906667, "ALTI": 160, "MIN_DATE": "1967-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.906667, 43.946667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30093002, "NOM_USUEL": "CONQUEYRAC-DDE", "LAT": 43.946667, "LON": 3.906667, "ALTI": 135, "MIN_DATE": "1987-01-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.906667, 43.946667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30093003, "NOM_USUEL": "CONQUEYRAC", "LAT": 43.9405, "LON": 3.9, "ALTI": 135, "MIN_DATE": "1989-01-01", "MAX_DATE": "2020-02-01" }, "geometry": { "type": "Point", "coordinates": [ 3.9, 43.9405 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30099001, "NOM_USUEL": "CROS LA ROUVIERE", "LAT": 43.995, "LON": 3.823333, "ALTI": 540, "MIN_DATE": "1957-01-01", "MAX_DATE": "1968-05-31" }, "geometry": { "type": "Point", "coordinates": [ 3.823333, 43.995 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30100001, "NOM_USUEL": "CRUVIERS-LASCOURS", "LAT": 44.0025, "LON": 4.200333, "ALTI": 103, "MIN_DATE": "2003-09-15", "MAX_DATE": "2012-02-29" }, "geometry": { "type": "Point", "coordinates": [ 4.200333, 44.0025 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30101001, "NOM_USUEL": "DEAUX", "LAT": 44.071833, "LON": 4.143667, "ALTI": 185, "MIN_DATE": "1988-07-27", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.143667, 44.071833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30105001, "NOM_USUEL": "DOURBIES", "LAT": 44.068333, "LON": 3.441667, "ALTI": 900, "MIN_DATE": "1989-01-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.441667, 44.068333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30106001, "NOM_USUEL": "DURFORT ET ST MARTIN DE SOSSEN", "LAT": 43.991, "LON": 3.953333, "ALTI": 190, "MIN_DATE": "1957-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.953333, 43.991 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30108001, "NOM_USUEL": "L'ESTRECHURE", "LAT": 44.108333, "LON": 3.783333, "ALTI": 367, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.783333, 44.108333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30117001, "NOM_USUEL": "FOURQUES", "LAT": 43.693333, "LON": 4.61, "ALTI": 5, "MIN_DATE": "1961-04-01", "MAX_DATE": "1968-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.61, 43.693333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30120001, "NOM_USUEL": "GAGNIERES EGLISE", "LAT": 44.308333, "LON": 4.128333, "ALTI": 192, "MIN_DATE": "1953-11-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.128333, 44.308333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30123001, "NOM_USUEL": "GALLARGUES LE MONTUEUX", "LAT": 43.714833, "LON": 4.171667, "ALTI": 17, "MIN_DATE": "1985-01-01", "MAX_DATE": "2021-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.171667, 43.714833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30125002, "NOM_USUEL": "GARONS MONTVAL", "LAT": 43.77, "LON": 4.425, "ALTI": 94, "MIN_DATE": "1960-11-01", "MAX_DATE": "1968-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.425, 43.77 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30130002, "NOM_USUEL": "GENOLHAC AVENUE REGORDANE", "LAT": 44.35, "LON": 3.95, "ALTI": 470, "MIN_DATE": "1972-10-01", "MAX_DATE": "1980-01-31" }, "geometry": { "type": "Point", "coordinates": [ 3.95, 44.35 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30132003, "NOM_USUEL": "LA GRAND COMBE", "LAT": 44.228333, "LON": 4.016667, "ALTI": 288, "MIN_DATE": "1992-01-01", "MAX_DATE": "2002-05-02" }, "geometry": { "type": "Point", "coordinates": [ 4.016667, 44.228333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30132004, "NOM_USUEL": "LA GRAND COMBE", "LAT": 44.243, "LON": 4.010167, "ALTI": 499, "MIN_DATE": "2002-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.010167, 44.243 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30133002, "NOM_USUEL": "LE GRAU-DU-ROI", "LAT": 43.535, "LON": 4.136667, "ALTI": 1, "MIN_DATE": "1962-01-01", "MAX_DATE": "1965-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.136667, 43.535 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30133003, "NOM_USUEL": "LE GRAU-DU-ROI PORT CAMARGUE", "LAT": 43.535, "LON": 4.136667, "ALTI": 2, "MIN_DATE": "1972-04-01", "MAX_DATE": "1973-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.136667, 43.535 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30133005, "NOM_USUEL": "L'ESPIGUETTE", "LAT": 43.487833, "LON": 4.1405, "ALTI": 1, "MIN_DATE": "2010-03-24", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.1405, 43.487833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30138001, "NOM_USUEL": "LANGLADE", "LAT": 43.803, "LON": 4.247667, "ALTI": 90, "MIN_DATE": "2001-02-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.247667, 43.803 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30143001, "NOM_USUEL": "LAVAL ST ROMAN", "LAT": 44.3, "LON": 4.516667, "ALTI": 134, "MIN_DATE": "1953-08-01", "MAX_DATE": "1985-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.516667, 44.3 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30146001, "NOM_USUEL": "LEDIGNAN ROUTE DE NIMES", "LAT": 43.986667, "LON": 4.105, "ALTI": 170, "MIN_DATE": "1956-09-01", "MAX_DATE": "1969-01-31" }, "geometry": { "type": "Point", "coordinates": [ 4.105, 43.986667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30150001, "NOM_USUEL": "LOGRIAN-FLORIAN AGGLOMERATION", "LAT": 43.955, "LON": 4.028333, "ALTI": 120, "MIN_DATE": "1956-09-16", "MAX_DATE": "1959-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.028333, 43.955 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30151002, "NOM_USUEL": "LUSSAN-PRAT", "LAT": 44.133333, "LON": 4.401667, "ALTI": 226, "MIN_DATE": "1980-10-01", "MAX_DATE": "2007-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.401667, 44.133333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30151004, "NOM_USUEL": "LUSSAN", "LAT": 44.147667, "LON": 4.365333, "ALTI": 257, "MIN_DATE": "2007-08-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.365333, 44.147667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30153003, "NOM_USUEL": "MALONS ET ELZE", "LAT": 44.417333, "LON": 4.022833, "ALTI": 867, "MIN_DATE": "1954-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.022833, 44.417333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30154001, "NOM_USUEL": "MANDAGOUT", "LAT": 44.0195, "LON": 3.6265, "ALTI": 485, "MIN_DATE": "1983-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.6265, 44.0195 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30155001, "NOM_USUEL": "MANDUEL", "LAT": 43.797, "LON": 4.5085, "ALTI": 58, "MIN_DATE": "1958-10-01", "MAX_DATE": "1975-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.5085, 43.797 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30159001, "NOM_USUEL": "LE MARTINET RMC", "LAT": 44.251667, "LON": 4.085, "ALTI": 252, "MIN_DATE": "1965-08-01", "MAX_DATE": "1966-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.085, 44.251667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30164001, "NOM_USUEL": "MEJANNES-LE-CLAP", "LAT": 44.216333, "LON": 4.331, "ALTI": 313, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.331, 44.216333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30166001, "NOM_USUEL": "MEYNES", "LAT": 43.861167, "LON": 4.5255, "ALTI": 71, "MIN_DATE": "1965-08-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.5255, 43.861167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30172001, "NOM_USUEL": "MONOBLET VALESTALLIERE", "LAT": 44.0, "LON": 3.886667, "ALTI": 350, "MIN_DATE": "1956-09-01", "MAX_DATE": "1970-09-30" }, "geometry": { "type": "Point", "coordinates": [ 3.886667, 44.0 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30175001, "NOM_USUEL": "MONTCLUS", "LAT": 44.268, "LON": 4.430333, "ALTI": 120, "MIN_DATE": "1961-01-01", "MAX_DATE": "2022-01-02" }, "geometry": { "type": "Point", "coordinates": [ 4.430333, 44.268 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30176002, "NOM_USUEL": "MONTDARDIER", "LAT": 43.947, "LON": 3.58, "ALTI": 640, "MIN_DATE": "1991-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.58, 43.947 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30182001, "NOM_USUEL": "MONTPEZAT VILLAGE", "LAT": 43.85, "LON": 4.155, "ALTI": 145, "MIN_DATE": "1957-01-01", "MAX_DATE": "1960-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.155, 43.85 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30183001, "NOM_USUEL": "MOULEZAN", "LAT": 43.930833, "LON": 4.128167, "ALTI": 108, "MIN_DATE": "1957-02-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.128167, 43.930833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189006, "NOM_USUEL": "NIMES MAS DE PARRAN", "LAT": 43.838333, "LON": 4.36, "ALTI": 39, "MIN_DATE": "1958-10-01", "MAX_DATE": "1968-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.36, 43.838333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189007, "NOM_USUEL": "NIMES LA TUILERIE", "LAT": 43.838333, "LON": 4.36, "ALTI": 39, "MIN_DATE": "1971-03-01", "MAX_DATE": "1975-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.36, 43.838333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189008, "NOM_USUEL": "NIMES", "LAT": 43.823333, "LON": 4.388333, "ALTI": 31, "MIN_DATE": "1959-01-01", "MAX_DATE": "1992-02-29" }, "geometry": { "type": "Point", "coordinates": [ 4.388333, 43.823333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30189009, "NOM_USUEL": "NIMES CHEYLON", "LAT": 43.8, "LON": 4.343333, "ALTI": 25, "MIN_DATE": "1975-01-01", "MAX_DATE": "1990-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.343333, 43.8 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30191001, "NOM_USUEL": "ORSAN EGLISE", "LAT": 44.131667, "LON": 4.666667, "ALTI": 43, "MIN_DATE": "1950-11-01", "MAX_DATE": "1953-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.666667, 44.131667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30196001, "NOM_USUEL": "LE PIN AGGLOMERATION", "LAT": 44.09, "LON": 4.541667, "ALTI": 160, "MIN_DATE": "1952-05-13", "MAX_DATE": "1953-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.541667, 44.09 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30200002, "NOM_USUEL": "POMPIGNAN", "LAT": 43.894833, "LON": 3.852833, "ALTI": 192, "MIN_DATE": "1957-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.852833, 43.894833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30202002, "NOM_USUEL": "PONT ST ESPRIT", "LAT": 44.248333, "LON": 4.627333, "ALTI": 79, "MIN_DATE": "1972-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.627333, 44.248333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30202003, "NOM_USUEL": "PONT-SAINT-ESPRIT LA MARTINE", "LAT": 44.256667, "LON": 4.643333, "ALTI": 49, "MIN_DATE": "1954-01-01", "MAX_DATE": "1954-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.643333, 44.256667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30209002, "NOM_USUEL": "PUJAUT", "LAT": 43.9985, "LON": 4.759667, "ALTI": 44, "MIN_DATE": "1988-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.759667, 43.9985 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30224001, "NOM_USUEL": "LA ROUVIERE", "LAT": 43.931833, "LON": 4.2405, "ALTI": 79, "MIN_DATE": "1986-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.2405, 43.931833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30225001, "NOM_USUEL": "SABRAN VILLEBRUNE", "LAT": 44.151667, "LON": 4.548333, "ALTI": 60, "MIN_DATE": "1951-05-01", "MAX_DATE": "1969-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.548333, 44.151667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30225002, "NOM_USUEL": "SABRAN", "LAT": 44.134167, "LON": 4.567167, "ALTI": 204, "MIN_DATE": "1988-01-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.567167, 44.134167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30231002, "NOM_USUEL": "SAINT-ANDRE-DE-VALBORGNE RMC", "LAT": 44.155, "LON": 3.68, "ALTI": 450, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-03-31" }, "geometry": { "type": "Point", "coordinates": [ 3.68, 44.155 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30231003, "NOM_USUEL": "SAINT ANDRE DE VALBORGNE", "LAT": 44.137667, "LON": 3.7505, "ALTI": 354, "MIN_DATE": "2007-10-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.7505, 44.137667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30239001, "NOM_USUEL": "SAINTE-CECILE-D'ANDORGE RMC", "LAT": 44.251667, "LON": 3.978333, "ALTI": 291, "MIN_DATE": "1970-07-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.978333, 44.251667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30253001, "NOM_USUEL": "SAINT-FLORENT-SUR-AUZONNET", "LAT": 44.241667, "LON": 4.111667, "ALTI": 227, "MIN_DATE": "1965-08-01", "MAX_DATE": "1966-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.111667, 44.241667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30258001, "NOM_USUEL": "NIMES-GARONS", "LAT": 43.772833, "LON": 4.412833, "ALTI": 94, "MIN_DATE": "1964-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.412833, 43.772833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30258006, "NOM_USUEL": "SAINT-GILLES MAS BLANC", "LAT": 43.678333, "LON": 4.433333, "ALTI": 2, "MIN_DATE": "1958-10-01", "MAX_DATE": "1973-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.433333, 43.678333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30268001, "NOM_USUEL": "SAINT-JEAN-DE-VALERISCLE RMC", "LAT": 44.233333, "LON": 4.145, "ALTI": 210, "MIN_DATE": "1965-08-01", "MAX_DATE": "1966-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.145, 44.233333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30269003, "NOM_USUEL": "SAINT-JEAN-DU-GARD RMC", "LAT": 44.105, "LON": 3.885, "ALTI": 200, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-03-31" }, "geometry": { "type": "Point", "coordinates": [ 3.885, 44.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30269004, "NOM_USUEL": "SAINT-JEAN-DU-GARD", "LAT": 44.105, "LON": 3.885, "ALTI": 450, "MIN_DATE": "1969-01-01", "MAX_DATE": "1974-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.885, 44.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30269006, "NOM_USUEL": "ST JEAN DU GARD", "LAT": 44.1105, "LON": 3.872, "ALTI": 196, "MIN_DATE": "1989-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.872, 44.1105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30273001, "NOM_USUEL": "ST JULIEN DE PEYROLAS", "LAT": 44.277, "LON": 4.579333, "ALTI": 71, "MIN_DATE": "1971-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.579333, 44.277 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30276001, "NOM_USUEL": "ST-LAURENT-D AIGOUZE", "LAT": 43.544667, "LON": 4.3045, "ALTI": 2, "MIN_DATE": "1966-08-01", "MAX_DATE": "2012-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.3045, 43.544667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30283001, "NOM_USUEL": "ST MARTIAL", "LAT": 44.035833, "LON": 3.7345, "ALTI": 483, "MIN_DATE": "1998-10-01", "MAX_DATE": "2022-01-02" }, "geometry": { "type": "Point", "coordinates": [ 3.7345, 44.035833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30297001, "NOM_USUEL": "ST SAUVEUR CAMPRIEU", "LAT": 44.119333, "LON": 3.4745, "ALTI": 1107, "MIN_DATE": "1963-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.4745, 44.119333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30299001, "NOM_USUEL": "ST SIFFRET", "LAT": 44.02, "LON": 4.486667, "ALTI": 135, "MIN_DATE": "1990-11-01", "MAX_DATE": "2006-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.486667, 44.02 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30302001, "NOM_USUEL": "SAINT-VICTOR-LA-COSTE", "LAT": 44.06, "LON": 4.641667, "ALTI": 138, "MIN_DATE": "1952-04-01", "MAX_DATE": "1957-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.641667, 44.06 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30311001, "NOM_USUEL": "SAUVE LES CASTELLETS", "LAT": 43.941667, "LON": 3.948333, "ALTI": 110, "MIN_DATE": "1956-09-01", "MAX_DATE": "1965-05-31" }, "geometry": { "type": "Point", "coordinates": [ 3.948333, 43.941667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30316001, "NOM_USUEL": "SENECHAS", "LAT": 44.3195, "LON": 4.05, "ALTI": 291, "MIN_DATE": "1985-07-01", "MAX_DATE": "2021-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.05, 44.3195 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30322001, "NOM_USUEL": "SOUDORGUES RMC", "LAT": 44.065, "LON": 3.828333, "ALTI": 555, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.828333, 44.065 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30325001, "NOM_USUEL": "SUMENE", "LAT": 43.9755, "LON": 3.715667, "ALTI": 198, "MIN_DATE": "1978-01-01", "MAX_DATE": "2011-10-31" }, "geometry": { "type": "Point", "coordinates": [ 3.715667, 43.9755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30325002, "NOM_USUEL": "SUMENE", "LAT": 43.976333, "LON": 3.709667, "ALTI": 325, "MIN_DATE": "2012-03-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.709667, 43.976333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30331001, "NOM_USUEL": "TRESQUES", "LAT": 44.123167, "LON": 4.6, "ALTI": 79, "MIN_DATE": "1972-01-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.6, 44.123167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30332001, "NOM_USUEL": "TREVES", "LAT": 44.077833, "LON": 3.389333, "ALTI": 565, "MIN_DATE": "1965-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.389333, 44.077833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30333001, "NOM_USUEL": "UCHAUD PEYTAVIN", "LAT": 43.755, "LON": 4.268333, "ALTI": 24, "MIN_DATE": "1960-02-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.268333, 43.755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30334003, "NOM_USUEL": "UZES", "LAT": 43.9925, "LON": 4.401833, "ALTI": 72, "MIN_DATE": "2002-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.401833, 43.9925 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30339004, "NOM_USUEL": "VALLERAUGUE RMC", "LAT": 44.08, "LON": 3.641667, "ALTI": 367, "MIN_DATE": "1964-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.641667, 44.08 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30339006, "NOM_USUEL": "VALLERAUGUE", "LAT": 44.081333, "LON": 3.6345, "ALTI": 360, "MIN_DATE": "1993-09-03", "MAX_DATE": "2010-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.6345, 44.081333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30341001, "NOM_USUEL": "VAUVERT-DDE", "LAT": 43.71, "LON": 4.266667, "ALTI": 17, "MIN_DATE": "1978-01-01", "MAX_DATE": "2007-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.266667, 43.71 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30341003, "NOM_USUEL": "VAUVERT", "LAT": 43.665, "LON": 4.303333, "ALTI": 50, "MIN_DATE": "1988-07-01", "MAX_DATE": "2002-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.303333, 43.665 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30347001, "NOM_USUEL": "VESTRIC-ET-CANDIAC", "LAT": 43.746833, "LON": 4.2595, "ALTI": 26, "MIN_DATE": "1966-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.2595, 43.746833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30349001, "NOM_USUEL": "VIC LE FESQ", "LAT": 43.870833, "LON": 4.072167, "ALTI": 45, "MIN_DATE": "1956-09-03", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.072167, 43.870833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30351001, "NOM_USUEL": "VILLENEUVE-LES-AVIGNON", "LAT": 43.965, "LON": 4.798333, "ALTI": 20, "MIN_DATE": "1967-03-01", "MAX_DATE": "1971-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.798333, 43.965 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 30352002, "NOM_USUEL": "VILLEVIEILLE", "LAT": 43.795167, "LON": 4.090833, "ALTI": 41, "MIN_DATE": "1970-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.090833, 43.795167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88015001, "NOM_USUEL": "ATTIGNEVILLE BOURG", "LAT": 48.383333, "LON": 5.808333, "ALTI": 310, "MIN_DATE": "1896-08-01", "MAX_DATE": "1897-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.808333, 48.383333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88029001, "NOM_USUEL": "BAINS", "LAT": 48.004167, "LON": 6.263167, "ALTI": 319, "MIN_DATE": "1949-05-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.263167, 48.004167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88029003, "NOM_USUEL": "BAINS-LES-BAINS", "LAT": 48.001667, "LON": 6.263333, "ALTI": 305, "MIN_DATE": "1870-02-01", "MAX_DATE": "1876-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.263333, 48.001667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88029012, "NOM_USUEL": "BAINS-LES-BAINS MANUFACTURE", "LAT": 48.001667, "LON": 6.263333, "ALTI": 293, "MIN_DATE": "1881-01-01", "MAX_DATE": "1895-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.263333, 48.001667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88037001, "NOM_USUEL": "BASSE-SUR-LE-RUPT-AGGL", "LAT": 47.986667, "LON": 6.765, "ALTI": 650, "MIN_DATE": "1886-09-01", "MAX_DATE": "1893-10-30" }, "geometry": { "type": "Point", "coordinates": [ 6.765, 47.986667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88037002, "NOM_USUEL": "BASSE-SUR-LE-RUPT TROUGEMONT", "LAT": 47.986667, "LON": 6.765, "ALTI": 586, "MIN_DATE": "1891-05-01", "MAX_DATE": "1898-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.765, 47.986667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88045001, "NOM_USUEL": "BEAUFREMONT AGGL.", "LAT": 48.256667, "LON": 5.753333, "ALTI": 415, "MIN_DATE": "1887-08-01", "MAX_DATE": "1905-03-30" }, "geometry": { "type": "Point", "coordinates": [ 5.753333, 48.256667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88075001, "NOM_USUEL": "LA BRESSE", "LAT": 48.005, "LON": 6.868833, "ALTI": 630, "MIN_DATE": "1904-03-01", "MAX_DATE": "2008-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.868833, 48.005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88076001, "NOM_USUEL": "BROUVELIEURES", "LAT": 48.233833, "LON": 6.7325, "ALTI": 395, "MIN_DATE": "1896-05-01", "MAX_DATE": "2010-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.7325, 48.233833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88078001, "NOM_USUEL": "BRUYERES AGGL.", "LAT": 48.206667, "LON": 6.718333, "ALTI": 480, "MIN_DATE": "1880-07-01", "MAX_DATE": "1906-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.718333, 48.206667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88079001, "NOM_USUEL": "BULGNEVILLE", "LAT": 48.208333, "LON": 5.835, "ALTI": 345, "MIN_DATE": "1873-01-01", "MAX_DATE": "1912-12-29" }, "geometry": { "type": "Point", "coordinates": [ 5.835, 48.208333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88081001, "NOM_USUEL": "BUSSANG TAYE", "LAT": 47.883333, "LON": 6.85, "ALTI": 740, "MIN_DATE": "1883-05-01", "MAX_DATE": "1902-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.85, 47.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88085001, "NOM_USUEL": "CHAMPDRAY BG", "LAT": 48.135, "LON": 6.751667, "ALTI": 725, "MIN_DATE": "1943-01-01", "MAX_DATE": "1944-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.751667, 48.135 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88090002, "NOM_USUEL": "CHARMES AGGL.", "LAT": 48.37, "LON": 6.29, "ALTI": 269, "MIN_DATE": "1883-02-01", "MAX_DATE": "1901-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.29, 48.37 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88094001, "NOM_USUEL": "CHATEL-SUR-MOSELLE AGGL.", "LAT": 48.313333, "LON": 6.391667, "ALTI": 287, "MIN_DATE": "1886-08-02", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.391667, 48.313333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88095002, "NOM_USUEL": "CHATENOIS", "LAT": 48.301667, "LON": 5.833333, "ALTI": 322, "MIN_DATE": "1883-01-31", "MAX_DATE": "1944-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.833333, 48.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88096001, "NOM_USUEL": "CHATILLON-SUR-SAONE AGGL.", "LAT": 47.948333, "LON": 5.866667, "ALTI": 265, "MIN_DATE": "1885-01-01", "MAX_DATE": "1911-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.866667, 47.948333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88098001, "NOM_USUEL": "CHAUMOUSEY", "LAT": 48.168167, "LON": 6.354667, "ALTI": 357, "MIN_DATE": "1931-10-01", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.354667, 48.168167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88098003, "NOM_USUEL": "CHAUMOUSEY-BOUZEY", "LAT": 48.161, "LON": 6.341167, "ALTI": 360, "MIN_DATE": "1883-02-01", "MAX_DATE": "1895-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.341167, 48.161 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88105001, "NOM_USUEL": "CLAUDON", "LAT": 48.031667, "LON": 6.036667, "ALTI": 330, "MIN_DATE": "1949-02-01", "MAX_DATE": "1969-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.036667, 48.031667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88114001, "NOM_USUEL": "CONTREXEVILLE", "LAT": 48.195, "LON": 5.896667, "ALTI": 344, "MIN_DATE": "1871-12-01", "MAX_DATE": "1946-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.896667, 48.195 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88115001, "NOM_USUEL": "CORCIEUX AGGL.", "LAT": 48.171667, "LON": 6.88, "ALTI": 550, "MIN_DATE": "1886-11-01", "MAX_DATE": "1900-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.88, 48.171667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88116002, "NOM_USUEL": "CORNIMONT - TRAVEXIN", "LAT": 47.96, "LON": 6.833333, "ALTI": 600, "MIN_DATE": "1904-06-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.833333, 47.96 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88116004, "NOM_USUEL": "CORNIMONT AGGL.", "LAT": 47.96, "LON": 6.833333, "ALTI": 518, "MIN_DATE": "1883-02-01", "MAX_DATE": "1903-01-30" }, "geometry": { "type": "Point", "coordinates": [ 6.833333, 47.96 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88124001, "NOM_USUEL": "DARNEY", "LAT": 48.085, "LON": 6.045833, "ALTI": 280, "MIN_DATE": "1913-06-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.045833, 48.085 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88136003, "NOM_USUEL": "DOGNEVILLE AGGL.", "LAT": 48.216667, "LON": 6.45, "ALTI": 285, "MIN_DATE": "1882-04-01", "MAX_DATE": "1882-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.45, 48.216667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88148001, "NOM_USUEL": "DOMMARTIN-LES-REMIREMONT AGGL.", "LAT": 47.996667, "LON": 6.643333, "ALTI": 400, "MIN_DATE": "1883-05-01", "MAX_DATE": "1913-10-30" }, "geometry": { "type": "Point", "coordinates": [ 6.643333, 47.996667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88151002, "NOM_USUEL": "DOMPAIRE AGGL.", "LAT": 48.22, "LON": 6.226667, "ALTI": 303, "MIN_DATE": "1887-01-06", "MAX_DATE": "1903-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.226667, 48.22 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88154001, "NOM_USUEL": "DOMREMY LA PUCELLE AGGL", "LAT": 48.441667, "LON": 5.675, "ALTI": 272, "MIN_DATE": "1870-04-01", "MAX_DATE": "1899-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.675, 48.441667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88160001, "NOM_USUEL": "EPINAL LA LOUVROIE", "LAT": 48.181333, "LON": 6.4215, "ALTI": 385, "MIN_DATE": "1923-07-01", "MAX_DATE": "1940-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.4215, 48.181333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88160002, "NOM_USUEL": "EPINAL - RAZIMONT", "LAT": 48.176667, "LON": 6.448333, "ALTI": 325, "MIN_DATE": "1872-02-01", "MAX_DATE": "1960-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.448333, 48.176667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88161001, "NOM_USUEL": "ESCLES", "LAT": 48.128333, "LON": 6.178333, "ALTI": 300, "MIN_DATE": "1870-01-01", "MAX_DATE": "1870-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.178333, 48.128333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88170001, "NOM_USUEL": "REMANVILLERS", "LAT": 47.9075, "LON": 6.709167, "ALTI": 460, "MIN_DATE": "1893-09-01", "MAX_DATE": "1900-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.709167, 47.9075 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88176001, "NOM_USUEL": "FONTENOY-LE-CHATEAU - PC", "LAT": 47.973333, "LON": 6.2, "ALTI": 259, "MIN_DATE": "1883-02-01", "MAX_DATE": "1913-12-30" }, "geometry": { "type": "Point", "coordinates": [ 6.2, 47.973333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88180001, "NOM_USUEL": "FRAIN AGGL.", "LAT": 48.085, "LON": 5.878333, "ALTI": 367, "MIN_DATE": "1893-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.878333, 48.085 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88181002, "NOM_USUEL": "FRAIZE", "LAT": 48.19, "LON": 7.007, "ALTI": 535, "MIN_DATE": "1949-03-01", "MAX_DATE": "2010-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.007, 48.19 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88193001, "NOM_USUEL": "GEMAINGOUTTE", "LAT": 48.253333, "LON": 7.086667, "ALTI": 460, "MIN_DATE": "1881-10-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.086667, 48.253333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88196001, "NOM_USUEL": "GERARDMER", "LAT": 48.076667, "LON": 6.883333, "ALTI": 666, "MIN_DATE": "1869-11-01", "MAX_DATE": "1994-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.883333, 48.076667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88196002, "NOM_USUEL": "GERARDMER RETOURNEMER", "LAT": 48.071667, "LON": 6.878333, "ALTI": 780, "MIN_DATE": "1875-09-01", "MAX_DATE": "1876-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.878333, 48.071667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88198002, "NOM_USUEL": "MARTIMPRE", "LAT": 48.104833, "LON": 6.904333, "ALTI": 765, "MIN_DATE": "1889-10-01", "MAX_DATE": "1894-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.904333, 48.104833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88201001, "NOM_USUEL": "GIRANCOURT_AGGL", "LAT": 48.161667, "LON": 6.31, "ALTI": 366, "MIN_DATE": "1908-11-01", "MAX_DATE": "1913-12-30" }, "geometry": { "type": "Point", "coordinates": [ 6.31, 48.161667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88209001, "NOM_USUEL": "GOLBEY", "LAT": 48.211667, "LON": 6.438333, "ALTI": 330, "MIN_DATE": "1949-03-01", "MAX_DATE": "2000-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.438333, 48.211667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88218001, "NOM_USUEL": "GRANGES-SUR-VOLOGNE AGGL.", "LAT": 48.143333, "LON": 6.79, "ALTI": 500, "MIN_DATE": "1886-09-01", "MAX_DATE": "1902-06-29" }, "geometry": { "type": "Point", "coordinates": [ 6.79, 48.143333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88258011, "NOM_USUEL": "LAMARCHE", "LAT": 48.07, "LON": 5.781667, "ALTI": 355, "MIN_DATE": "1871-12-01", "MAX_DATE": "1942-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.781667, 48.07 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88264001, "NOM_USUEL": "LEGEVILLE-ET-BONFAYS AGGL.", "LAT": 48.186667, "LON": 6.15, "ALTI": 300, "MIN_DATE": "1897-05-01", "MAX_DATE": "1904-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.15, 48.186667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88267002, "NOM_USUEL": "LERRAIN-AGGL", "LAT": 48.145, "LON": 6.15, "ALTI": 318, "MIN_DATE": "1871-07-10", "MAX_DATE": "1911-12-30" }, "geometry": { "type": "Point", "coordinates": [ 6.15, 48.145 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88273001, "NOM_USUEL": "LONGCHAMP AGGL.", "LAT": 48.225, "LON": 6.515, "ALTI": 410, "MIN_DATE": "1882-01-01", "MAX_DATE": "1886-02-27" }, "geometry": { "type": "Point", "coordinates": [ 6.515, 48.225 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88293001, "NOM_USUEL": "MAXEY-SUR-MEUSE EC.", "LAT": 48.45, "LON": 5.698333, "ALTI": 269, "MIN_DATE": "1949-02-01", "MAX_DATE": "1949-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.698333, 48.45 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88304002, "NOM_USUEL": "MIRECOURT", "LAT": 48.303333, "LON": 6.133333, "ALTI": 279, "MIN_DATE": "1872-01-01", "MAX_DATE": "1872-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.133333, 48.303333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88304003, "NOM_USUEL": "MIRECOURT - EN", "LAT": 48.303333, "LON": 6.133333, "ALTI": 295, "MIN_DATE": "1856-06-01", "MAX_DATE": "1940-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.133333, 48.303333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88304005, "NOM_USUEL": "MIRECOURT", "LAT": 48.312167, "LON": 6.135167, "ALTI": 265, "MIN_DATE": "1939-01-01", "MAX_DATE": "2017-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.135167, 48.312167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88310002, "NOM_USUEL": "MONTHUREUX-SUR-SAONE AGGL.", "LAT": 48.03, "LON": 5.973333, "ALTI": 281, "MIN_DATE": "1883-03-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.973333, 48.03 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88317001, "NOM_USUEL": "COL DU PRAYE", "LAT": 48.430333, "LON": 7.023, "ALTI": 850, "MIN_DATE": "1885-02-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.023, 48.430333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88321001, "NOM_USUEL": "NEUFCHATEAU", "LAT": 48.3505, "LON": 5.692167, "ALTI": 284, "MIN_DATE": "1871-12-01", "MAX_DATE": "2012-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.692167, 48.3505 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88321002, "NOM_USUEL": "NONCOURT", "LAT": 48.351667, "LON": 5.69, "ALTI": 290, "MIN_DATE": "1898-01-01", "MAX_DATE": "1907-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.69, 48.351667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88321003, "NOM_USUEL": "NEUFCHATEAU NONCOURT BG", "LAT": 48.351667, "LON": 5.69, "ALTI": 290, "MIN_DATE": "1935-01-01", "MAX_DATE": "1935-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.69, 48.351667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88321005, "NOM_USUEL": "NEUFCHATEAU BOURG", "LAT": 48.355, "LON": 5.696667, "ALTI": 280, "MIN_DATE": "1908-01-01", "MAX_DATE": "1913-12-30" }, "geometry": { "type": "Point", "coordinates": [ 5.696667, 48.355 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88343001, "NOM_USUEL": "PAREY-SOUS-MONTFORT AGGL.", "LAT": 48.251667, "LON": 5.946667, "ALTI": 380, "MIN_DATE": "1886-08-01", "MAX_DATE": "1897-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.946667, 48.251667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88349001, "NOM_USUEL": "PLAINFAING LA HARDALLE", "LAT": 48.17, "LON": 7.015, "ALTI": 800, "MIN_DATE": "1883-07-01", "MAX_DATE": "1902-06-29" }, "geometry": { "type": "Point", "coordinates": [ 7.015, 48.17 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88349005, "NOM_USUEL": "BARANCON", "LAT": 48.172167, "LON": 7.013667, "ALTI": 650, "MIN_DATE": "1881-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.013667, 48.172167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88351001, "NOM_USUEL": "PLOMBIERES-LES-BAINS EC.", "LAT": 47.963333, "LON": 6.461667, "ALTI": 460, "MIN_DATE": "1888-01-01", "MAX_DATE": "1930-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.461667, 47.963333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88351003, "NOM_USUEL": "GRANGES DE PLOMBIERES", "LAT": 47.966667, "LON": 6.45, "ALTI": 576, "MIN_DATE": "1933-07-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.45, 47.966667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88358001, "NOM_USUEL": "POUXEUX AGGL.", "LAT": 48.106667, "LON": 6.566667, "ALTI": 380, "MIN_DATE": "1886-09-01", "MAX_DATE": "1907-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.566667, 48.106667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88361003, "NOM_USUEL": "PROVENCHERES", "LAT": 48.308333, "LON": 7.08, "ALTI": 427, "MIN_DATE": "1888-06-01", "MAX_DATE": "1913-12-30" }, "geometry": { "type": "Point", "coordinates": [ 7.08, 48.308333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88367001, "NOM_USUEL": "RAMBERVILLERS", "LAT": 48.338333, "LON": 6.636667, "ALTI": 286, "MIN_DATE": "1883-06-01", "MAX_DATE": "1990-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.636667, 48.338333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88369001, "NOM_USUEL": "RAMONCHAMP BG", "LAT": 47.891667, "LON": 6.738333, "ALTI": 474, "MIN_DATE": "1886-08-01", "MAX_DATE": "1954-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.738333, 47.891667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88369002, "NOM_USUEL": "RAMONCHAMP", "LAT": 47.891667, "LON": 6.738333, "ALTI": 480, "MIN_DATE": "1901-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.738333, 47.891667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88372001, "NOM_USUEL": "RAON-L'ETAPE AGGL.", "LAT": 48.406667, "LON": 6.843333, "ALTI": 286, "MIN_DATE": "1883-03-01", "MAX_DATE": "1913-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.843333, 48.406667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88383001, "NOM_USUEL": "REMIREMONT", "LAT": 48.0185, "LON": 6.591333, "ALTI": 384, "MIN_DATE": "1949-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.591333, 48.0185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88383002, "NOM_USUEL": "REMIREMONT AGGL.", "LAT": 48.013333, "LON": 6.591667, "ALTI": 394, "MIN_DATE": "1904-03-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.591667, 48.013333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88391001, "NOM_USUEL": "ROCHESSON LES TRUCHES", "LAT": 48.021667, "LON": 6.785, "ALTI": 600, "MIN_DATE": "1894-11-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.785, 48.021667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88413001, "NOM_USUEL": "ST DIE - BOLLE", "LAT": 48.285, "LON": 6.948333, "ALTI": 341, "MIN_DATE": "1949-02-01", "MAX_DATE": "1967-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.948333, 48.285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88413003, "NOM_USUEL": "ST DIE - ST MARTIN", "LAT": 48.285, "LON": 6.948333, "ALTI": 460, "MIN_DATE": "1902-06-01", "MAX_DATE": "1906-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.948333, 48.285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88413007, "NOM_USUEL": "ST DIE - AGGLO", "LAT": 48.285, "LON": 6.948333, "ALTI": 340, "MIN_DATE": "1872-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.948333, 48.285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88424002, "NOM_USUEL": "STE MARGUERITE AGGL", "LAT": 48.266667, "LON": 6.98, "ALTI": 360, "MIN_DATE": "1901-04-01", "MAX_DATE": "1913-06-29" }, "geometry": { "type": "Point", "coordinates": [ 6.98, 48.266667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88428001, "NOM_USUEL": "ST MICHEL-SUR-MEURTHE", "LAT": 48.318333, "LON": 6.885, "ALTI": 314, "MIN_DATE": "1921-10-01", "MAX_DATE": "1938-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.885, 48.318333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88428002, "NOM_USUEL": "ST MICHEL-SUR-MEURTHE - GARE", "LAT": 48.318333, "LON": 6.885, "ALTI": 314, "MIN_DATE": "1937-10-01", "MAX_DATE": "1944-07-30" }, "geometry": { "type": "Point", "coordinates": [ 6.885, 48.318333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88445001, "NOM_USUEL": "SAULCY-SUR-MEURTHE AGGL.", "LAT": 48.238333, "LON": 6.963333, "ALTI": 385, "MIN_DATE": "1877-01-01", "MAX_DATE": "1900-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.963333, 48.238333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88447002, "NOM_USUEL": "SAULXURES", "LAT": 47.9465, "LON": 6.7775, "ALTI": 465, "MIN_DATE": "1886-06-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.7775, 47.9465 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88451001, "NOM_USUEL": "SENONES", "LAT": 48.396667, "LON": 6.968333, "ALTI": 340, "MIN_DATE": "1949-07-01", "MAX_DATE": "1995-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.968333, 48.396667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88451002, "NOM_USUEL": "SENONES AGGL.", "LAT": 48.393333, "LON": 6.978333, "ALTI": 344, "MIN_DATE": "1870-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.978333, 48.393333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88465001, "NOM_USUEL": "THAON-LES-VOSGES", "LAT": 48.248333, "LON": 6.418333, "ALTI": 320, "MIN_DATE": "1877-03-06", "MAX_DATE": "1955-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.418333, 48.248333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88468002, "NOM_USUEL": "LE THILLOT-AGGL", "LAT": 47.876667, "LON": 6.766667, "ALTI": 494, "MIN_DATE": "1870-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.766667, 47.876667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88477001, "NOM_USUEL": "TRAMPOT AGGL.", "LAT": 48.36, "LON": 5.436667, "ALTI": 390, "MIN_DATE": "1882-07-01", "MAX_DATE": "1905-09-29" }, "geometry": { "type": "Point", "coordinates": [ 5.436667, 48.36 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88484001, "NOM_USUEL": "UZEMAIN-THIEZELOUZE", "LAT": 48.086667, "LON": 6.343333, "ALTI": 335, "MIN_DATE": "1886-08-01", "MAX_DATE": "1908-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.343333, 48.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88486001, "NOM_USUEL": "VAGNEY AGGL.", "LAT": 48.006667, "LON": 6.716667, "ALTI": 412, "MIN_DATE": "1872-01-01", "MAX_DATE": "1879-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.716667, 48.006667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88486002, "NOM_USUEL": "VAGNEY BG", "LAT": 48.006667, "LON": 6.716667, "ALTI": 406, "MIN_DATE": "1910-06-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.716667, 48.006667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88487001, "NOM_USUEL": "LE VAL-D'AJOL AGGL.", "LAT": 47.925, "LON": 6.493333, "ALTI": 360, "MIN_DATE": "1883-05-01", "MAX_DATE": "1912-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.493333, 47.925 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88492001, "NOM_USUEL": "COL DE LA SCHLUCHT", "LAT": 48.063667, "LON": 7.021667, "ALTI": 1242, "MIN_DATE": "1873-04-01", "MAX_DATE": "1894-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.021667, 48.063667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88492004, "NOM_USUEL": "LA SCHLUCHT", "LAT": 48.063667, "LON": 7.022333, "ALTI": 1141, "MIN_DATE": "1942-11-01", "MAX_DATE": "1944-09-30" }, "geometry": { "type": "Point", "coordinates": [ 7.022333, 48.063667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88503001, "NOM_USUEL": "VEXAINCOURT AGGL.", "LAT": 48.491667, "LON": 7.046667, "ALTI": 376, "MIN_DATE": "1886-09-01", "MAX_DATE": "1912-11-30" }, "geometry": { "type": "Point", "coordinates": [ 7.046667, 48.491667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88515001, "NOM_USUEL": "VIOMENIL AGGL.", "LAT": 48.2, "LON": 5.933333, "ALTI": 472, "MIN_DATE": "1883-02-01", "MAX_DATE": "1913-12-30" }, "geometry": { "type": "Point", "coordinates": [ 5.933333, 48.2 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88516004, "NOM_USUEL": "VITTEL", "LAT": 48.191667, "LON": 5.935, "ALTI": 338, "MIN_DATE": "1896-08-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.935, 48.191667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88530002, "NOM_USUEL": "XERTIGNY", "LAT": 48.045, "LON": 6.401667, "ALTI": 496, "MIN_DATE": "1883-02-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.401667, 48.045 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88531002, "NOM_USUEL": "LONGEMER", "LAT": 48.0685, "LON": 6.9485, "ALTI": 745, "MIN_DATE": "1949-02-01", "MAX_DATE": "2022-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.9485, 48.0685 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88531004, "NOM_USUEL": "LONGEMER", "LAT": 48.066667, "LON": 6.966667, "ALTI": 780, "MIN_DATE": "1883-03-01", "MAX_DATE": "1895-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.966667, 48.066667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88009001, "NOM_USUEL": "ANOULD RM", "LAT": 48.185, "LON": 6.946667, "ALTI": 455, "MIN_DATE": "1965-06-01", "MAX_DATE": "1967-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.946667, 48.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88033001, "NOM_USUEL": "BAN-DE-SAPT_MAN", "LAT": 48.3465, "LON": 6.9925, "ALTI": 583, "MIN_DATE": "1996-01-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.9925, 48.3465 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88033002, "NOM_USUEL": "BAN-DE-SAPT", "LAT": 48.345833, "LON": 6.991833, "ALTI": 590, "MIN_DATE": "2004-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.991833, 48.345833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88037003, "NOM_USUEL": "BASSE-S-L-RUPT", "LAT": 47.990333, "LON": 6.726833, "ALTI": 445, "MIN_DATE": "2002-04-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.726833, 47.990333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88075003, "NOM_USUEL": "LA BRESSE", "LAT": 48.005, "LON": 6.868833, "ALTI": 700, "MIN_DATE": "2008-07-01", "MAX_DATE": "2016-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.868833, 48.005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88075005, "NOM_USUEL": "LA_BRESSE_SAPC", "LAT": 48.007667, "LON": 6.9415, "ALTI": 772, "MIN_DATE": "2016-07-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.9415, 48.007667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88081004, "NOM_USUEL": "BUSSANG", "LAT": 47.892167, "LON": 6.868, "ALTI": 615, "MIN_DATE": "2017-01-04", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.868, 47.892167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88090003, "NOM_USUEL": "CHARMES", "LAT": 48.385, "LON": 6.291167, "ALTI": 283, "MIN_DATE": "1958-04-01", "MAX_DATE": "2007-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.291167, 48.385 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88095003, "NOM_USUEL": "CHATENOIS", "LAT": 48.309, "LON": 5.834333, "ALTI": 330, "MIN_DATE": "1974-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.834333, 48.309 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88101001, "NOM_USUEL": "CHENIMENIL", "LAT": 48.139167, "LON": 6.596333, "ALTI": 402, "MIN_DATE": "1977-09-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.596333, 48.139167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88106001, "NOM_USUEL": "CLEFCY RM", "LAT": 48.166667, "LON": 6.981667, "ALTI": 502, "MIN_DATE": "1969-03-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.981667, 48.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88116001, "NOM_USUEL": "CORNIMONT", "LAT": 47.96, "LON": 6.833333, "ALTI": 530, "MIN_DATE": "1970-03-25", "MAX_DATE": "1978-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.833333, 47.96 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88116003, "NOM_USUEL": "CORNIMONT", "LAT": 47.958333, "LON": 6.833333, "ALTI": 585, "MIN_DATE": "1978-11-01", "MAX_DATE": "1997-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.833333, 47.958333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88136001, "NOM_USUEL": "EPINAL", "LAT": 48.210833, "LON": 6.451667, "ALTI": 317, "MIN_DATE": "1986-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.451667, 48.210833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88147001, "NOM_USUEL": "DOMMARTIN-AUX-BOIS_SAPC", "LAT": 48.160667, "LON": 6.280167, "ALTI": 396, "MIN_DATE": "2007-05-15", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.280167, 48.160667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88151001, "NOM_USUEL": "DOMPAIRE SRAEL", "LAT": 48.22, "LON": 6.226667, "ALTI": 313, "MIN_DATE": "1979-01-01", "MAX_DATE": "1988-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.226667, 48.22 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88176003, "NOM_USUEL": "FONTENOY_SAPC", "LAT": 47.981333, "LON": 6.209167, "ALTI": 314, "MIN_DATE": "2018-10-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.209167, 47.981333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88196003, "NOM_USUEL": "GERARDMER LE PHENY", "LAT": 48.071667, "LON": 6.878333, "ALTI": 709, "MIN_DATE": "1977-04-01", "MAX_DATE": "1979-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.878333, 48.071667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88196008, "NOM_USUEL": "GERARDMER", "LAT": 48.061667, "LON": 6.878333, "ALTI": 735, "MIN_DATE": "1994-04-01", "MAX_DATE": "2002-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.878333, 48.061667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88196009, "NOM_USUEL": "GERARDMER", "LAT": 48.072167, "LON": 6.834, "ALTI": 669, "MIN_DATE": "2003-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.834, 48.072167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88198001, "NOM_USUEL": "GERBEPAL", "LAT": 48.151833, "LON": 6.9195, "ALTI": 619, "MIN_DATE": "2012-01-01", "MAX_DATE": "2015-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.9195, 48.151833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88201003, "NOM_USUEL": "GIRANCOURT", "LAT": 48.138, "LON": 6.3235, "ALTI": 355, "MIN_DATE": "2004-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.3235, 48.138 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88212001, "NOM_USUEL": "GRAND", "LAT": 48.383167, "LON": 5.479, "ALTI": 390, "MIN_DATE": "1970-05-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.479, 48.383167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88215001, "NOM_USUEL": "GRANDRUPT RM", "LAT": 48.373333, "LON": 7.053333, "ALTI": 442, "MIN_DATE": "1973-01-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.053333, 48.373333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88223001, "NOM_USUEL": "GUGNEY", "LAT": 48.301667, "LON": 6.272167, "ALTI": 330, "MIN_DATE": "2008-05-01", "MAX_DATE": "2009-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.272167, 48.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88234001, "NOM_USUEL": "HARSAULT LA FORGE DU THUNIMONT", "LAT": 48.055, "LON": 6.238333, "ALTI": 380, "MIN_DATE": "1956-10-01", "MAX_DATE": "1957-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.238333, 48.055 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88248001, "NOM_USUEL": "ISCHES_SAPC", "LAT": 48.016667, "LON": 5.8175, "ALTI": 342, "MIN_DATE": "2015-11-27", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.8175, 48.016667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88250001, "NOM_USUEL": "JARMENIL RM", "LAT": 48.111667, "LON": 6.571667, "ALTI": 365, "MIN_DATE": "1956-01-01", "MAX_DATE": "1960-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.571667, 48.111667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88258003, "NOM_USUEL": "LAMARCHE", "LAT": 48.066, "LON": 5.785333, "ALTI": 370, "MIN_DATE": "1974-04-01", "MAX_DATE": "2014-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.785333, 48.066 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88267001, "NOM_USUEL": "LERRAIN", "LAT": 48.146, "LON": 6.148333, "ALTI": 320, "MIN_DATE": "1971-06-01", "MAX_DATE": "2020-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.148333, 48.146 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88271001, "NOM_USUEL": "LIGNEVILLE", "LAT": 48.160833, "LON": 5.961167, "ALTI": 433, "MIN_DATE": "2001-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.961167, 48.160833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88277001, "NOM_USUEL": "LUVIGNY", "LAT": 48.495333, "LON": 7.074, "ALTI": 455, "MIN_DATE": "2005-02-01", "MAX_DATE": "2011-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.074, 48.495333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88289001, "NOM_USUEL": "MARTIGNY-LES-BAINS", "LAT": 48.105, "LON": 5.823333, "ALTI": 365, "MIN_DATE": "1960-04-01", "MAX_DATE": "1973-11-10" }, "geometry": { "type": "Point", "coordinates": [ 5.823333, 48.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88290001, "NOM_USUEL": "MARTIGNY", "LAT": 48.444667, "LON": 5.793667, "ALTI": 318, "MIN_DATE": "1972-01-01", "MAX_DATE": "2009-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.793667, 48.444667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88302001, "NOM_USUEL": "LE MENIL", "LAT": 47.922833, "LON": 6.818333, "ALTI": 665, "MIN_DATE": "1990-03-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.818333, 47.922833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88304006, "NOM_USUEL": "MIRECOURT-INRA", "LAT": 48.301667, "LON": 6.123333, "ALTI": 289, "MIN_DATE": "2002-05-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.123333, 48.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88310001, "NOM_USUEL": "MONTHUREUX", "LAT": 48.035833, "LON": 5.982167, "ALTI": 265, "MIN_DATE": "1969-09-01", "MAX_DATE": "2012-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.982167, 48.035833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88327001, "NOM_USUEL": "NOMEXY", "LAT": 48.310167, "LON": 6.381167, "ALTI": 290, "MIN_DATE": "1990-07-01", "MAX_DATE": "2012-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.381167, 48.310167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88330001, "NOM_USUEL": "NONVILLE - SRAEL", "LAT": 48.121667, "LON": 5.988333, "ALTI": 386, "MIN_DATE": "1975-10-01", "MAX_DATE": "1989-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.988333, 48.121667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88340001, "NOM_USUEL": "PADOUX", "LAT": 48.275833, "LON": 6.583667, "ALTI": 342, "MIN_DATE": "1970-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.583667, 48.275833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88361001, "NOM_USUEL": "PROVENCHERES-SUR-FAVE RM", "LAT": 48.308333, "LON": 7.08, "ALTI": 427, "MIN_DATE": "1980-01-01", "MAX_DATE": "1997-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.08, 48.308333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88361002, "NOM_USUEL": "PROVENCHERES", "LAT": 48.306333, "LON": 7.076667, "ALTI": 410, "MIN_DATE": "1994-01-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.076667, 48.306333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88393003, "NOM_USUEL": "ROLLAINVILLE", "LAT": 48.359167, "LON": 5.716667, "ALTI": 372, "MIN_DATE": "2006-06-17", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.716667, 48.359167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88399001, "NOM_USUEL": "LE ROULIER_SAPC", "LAT": 48.168, "LON": 6.6255, "ALTI": 449, "MIN_DATE": "2009-07-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.6255, 48.168 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88402002, "NOM_USUEL": "ROVILLE", "LAT": 48.383, "LON": 6.608167, "ALTI": 278, "MIN_DATE": "1969-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.608167, 48.383 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88408002, "NOM_USUEL": "RUPT-SUR-MOSELLE", "LAT": 47.918167, "LON": 6.663, "ALTI": 427, "MIN_DATE": "1954-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.663, 47.918167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88411001, "NOM_USUEL": "ST BASLEMONT", "LAT": 48.151667, "LON": 5.991667, "ALTI": 377, "MIN_DATE": "1975-10-01", "MAX_DATE": "1996-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.991667, 48.151667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88411011, "NOM_USUEL": "ST BASLEMONT - ECOLE", "LAT": 48.151667, "LON": 5.993333, "ALTI": 457, "MIN_DATE": "1956-01-01", "MAX_DATE": "1956-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.993333, 48.151667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88413002, "NOM_USUEL": "ST DIE - RM", "LAT": 48.285, "LON": 6.933333, "ALTI": 343, "MIN_DATE": "1969-01-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.933333, 48.285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88424001, "NOM_USUEL": "STE MARGUERITE", "LAT": 48.2715, "LON": 6.962667, "ALTI": 358, "MIN_DATE": "1967-10-01", "MAX_DATE": "2010-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.962667, 48.2715 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88426001, "NOM_USUEL": "ST MAURICE", "LAT": 47.856667, "LON": 6.823333, "ALTI": 660, "MIN_DATE": "1969-03-01", "MAX_DATE": "1997-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.823333, 47.856667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88430001, "NOM_USUEL": "ST OUEN-LES-PAREY_SAPC", "LAT": 48.188833, "LON": 5.7745, "ALTI": 329, "MIN_DATE": "2007-01-12", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.7745, 48.188833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88436001, "NOM_USUEL": "ST STAIL", "LAT": 48.368333, "LON": 7.075, "ALTI": 632, "MIN_DATE": "1975-10-01", "MAX_DATE": "1996-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.075, 48.368333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88438001, "NOM_USUEL": "LA SALLE", "LAT": 48.329333, "LON": 6.7815, "ALTI": 490, "MIN_DATE": "1970-08-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.7815, 48.329333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88442001, "NOM_USUEL": "SAPOIS", "LAT": 48.046667, "LON": 6.763333, "ALTI": 840, "MIN_DATE": "1975-11-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.763333, 48.046667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88468001, "NOM_USUEL": "LE THILLOT EC.", "LAT": 47.876667, "LON": 6.766667, "ALTI": 492, "MIN_DATE": "1954-11-01", "MAX_DATE": "1963-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.766667, 47.876667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88475001, "NOM_USUEL": "TOLLAINCOURT", "LAT": 48.095, "LON": 5.733333, "ALTI": 370, "MIN_DATE": "1978-04-01", "MAX_DATE": "1982-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.733333, 48.095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88486003, "NOM_USUEL": "VAGNEY", "LAT": 48.042333, "LON": 6.750333, "ALTI": 805, "MIN_DATE": "2006-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.750333, 48.042333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88487002, "NOM_USUEL": "VAL-D AJOL", "LAT": 47.926, "LON": 6.490333, "ALTI": 370, "MIN_DATE": "1992-12-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.490333, 47.926 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88487003, "NOM_USUEL": "LE VAL-D'AJOL", "LAT": 47.955167, "LON": 6.462667, "ALTI": 544, "MIN_DATE": "2017-07-04", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.462667, 47.955167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88497001, "NOM_USUEL": "VAXONCOURT", "LAT": 48.286667, "LON": 6.406667, "ALTI": 302, "MIN_DATE": "1979-10-01", "MAX_DATE": "1989-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.406667, 48.286667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88530001, "NOM_USUEL": "XERTIGNY", "LAT": 48.044, "LON": 6.397833, "ALTI": 485, "MIN_DATE": "1969-07-01", "MAX_DATE": "2009-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.397833, 48.044 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 88531003, "NOM_USUEL": "XONRUPT", "LAT": 48.051667, "LON": 7.008333, "ALTI": 1220, "MIN_DATE": "1969-10-01", "MAX_DATE": "1997-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.008333, 48.051667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38005002, "NOM_USUEL": "ALLEMOND BOURG", "LAT": 45.13, "LON": 6.036667, "ALTI": 722, "MIN_DATE": "1947-01-01", "MAX_DATE": "1947-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.036667, 45.13 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38006001, "NOM_USUEL": "ALLEVARD", "LAT": 45.395, "LON": 6.072, "ALTI": 495, "MIN_DATE": "1949-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.072, 45.395 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38021001, "NOM_USUEL": "AUTRANS", "LAT": 45.182, "LON": 5.552167, "ALTI": 1069, "MIN_DATE": "1905-01-05", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.552167, 45.182 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38034001, "NOM_USUEL": "BEAUREPAIRE", "LAT": 45.350333, "LON": 5.0365, "ALTI": 288, "MIN_DATE": "1892-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.0365, 45.350333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38040001, "NOM_USUEL": "BESSE", "LAT": 45.071167, "LON": 6.168, "ALTI": 1520, "MIN_DATE": "1922-11-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.168, 45.071167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38053001, "NOM_USUEL": "BOURGOIN", "LAT": 45.605, "LON": 5.265, "ALTI": 254, "MIN_DATE": "1909-01-01", "MAX_DATE": "2003-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.265, 45.605 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38073001, "NOM_USUEL": "CHANTELOUVE", "LAT": 44.97, "LON": 5.956667, "ALTI": 1000, "MIN_DATE": "1947-01-01", "MAX_DATE": "2003-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.956667, 44.97 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38075001, "NOM_USUEL": "CHAPAREILLAN", "LAT": 45.463333, "LON": 5.985, "ALTI": 270, "MIN_DATE": "1949-01-01", "MAX_DATE": "2005-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.985, 45.463333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38082001, "NOM_USUEL": "CHARAVINES", "LAT": 45.432833, "LON": 5.517333, "ALTI": 510, "MIN_DATE": "1893-04-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.517333, 45.432833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38090001, "NOM_USUEL": "CHATEAU-BERNARD", "LAT": 44.975, "LON": 5.571667, "ALTI": 800, "MIN_DATE": "1948-01-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.571667, 44.975 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38105001, "NOM_USUEL": "CHIRENS", "LAT": 45.433333, "LON": 5.57, "ALTI": 463, "MIN_DATE": "1949-01-01", "MAX_DATE": "1999-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.57, 45.433333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38113005, "NOM_USUEL": "CLELLES BOURG", "LAT": 44.826667, "LON": 5.621667, "ALTI": 740, "MIN_DATE": "1947-01-01", "MAX_DATE": "1951-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.621667, 44.826667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38128001, "NOM_USUEL": "CORPS", "LAT": 44.819833, "LON": 5.946, "ALTI": 935, "MIN_DATE": "1947-01-01", "MAX_DATE": "2017-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.946, 44.819833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38130001, "NOM_USUEL": "LA COTE ST ANDRE", "LAT": 45.3545, "LON": 5.262667, "ALTI": 346, "MIN_DATE": "1878-05-01", "MAX_DATE": "2017-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.262667, 45.3545 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38153001, "NOM_USUEL": "ENGINS", "LAT": 45.176167, "LON": 5.617167, "ALTI": 877, "MIN_DATE": "1905-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.617167, 45.176167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38154001, "NOM_USUEL": "ENTRAIGUES", "LAT": 44.903333, "LON": 5.946667, "ALTI": 809, "MIN_DATE": "1948-01-01", "MAX_DATE": "2003-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.946667, 44.903333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38158001, "NOM_USUEL": "GRENOBLE-EYBENS", "LAT": 45.166667, "LON": 5.733333, "ALTI": 223, "MIN_DATE": "1946-05-01", "MAX_DATE": "1968-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.733333, 45.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38162001, "NOM_USUEL": "FAVERGES", "LAT": 45.594667, "LON": 5.528833, "ALTI": 367, "MIN_DATE": "1948-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.528833, 45.594667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38163001, "NOM_USUEL": "FOND-DE-FRANCE", "LAT": 45.28, "LON": 6.075, "ALTI": 1081, "MIN_DATE": "1948-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.075, 45.28 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38177001, "NOM_USUEL": "LA GARDE L'ARMENTIER LE BAS", "LAT": 45.066667, "LON": 6.045, "ALTI": 1080, "MIN_DATE": "1948-01-01", "MAX_DATE": "1974-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.045, 45.066667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38185001, "NOM_USUEL": "GRENOBLE ECOLE NORMALE", "LAT": 45.185, "LON": 5.721667, "ALTI": 217, "MIN_DATE": "1872-05-01", "MAX_DATE": "1877-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.721667, 45.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38185002, "NOM_USUEL": "GRENOBLE JARDIN DES PLANTES", "LAT": 45.185, "LON": 5.721667, "ALTI": 220, "MIN_DATE": "1948-01-01", "MAX_DATE": "1948-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.721667, 45.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38242001, "NOM_USUEL": "MONESTIER", "LAT": 44.921667, "LON": 5.6375, "ALTI": 806, "MIN_DATE": "1905-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.6375, 44.921667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38265001, "NOM_USUEL": "LA MOTTE", "LAT": 44.963333, "LON": 5.746667, "ALTI": 937, "MIN_DATE": "1949-01-01", "MAX_DATE": "1994-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.746667, 44.963333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38269001, "NOM_USUEL": "LA MURE", "LAT": 44.905667, "LON": 5.783667, "ALTI": 881, "MIN_DATE": "1879-07-01", "MAX_DATE": "2017-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.783667, 44.905667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38285001, "NOM_USUEL": "ORNON", "LAT": 45.051667, "LON": 5.987333, "ALTI": 950, "MIN_DATE": "1905-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.987333, 45.051667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38299001, "NOM_USUEL": "PELLAFOL-CHANEAUX", "LAT": 44.784167, "LON": 5.906167, "ALTI": 947, "MIN_DATE": "1949-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.906167, 44.784167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38299002, "NOM_USUEL": "PELLAFOL-SAUTET", "LAT": 44.816333, "LON": 5.908833, "ALTI": 800, "MIN_DATE": "1949-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.908833, 44.816333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38315001, "NOM_USUEL": "PONT-DE-BEAUVOISIN-TABACS", "LAT": 45.533333, "LON": 5.67, "ALTI": 239, "MIN_DATE": "1948-01-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.67, 45.533333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38319001, "NOM_USUEL": "PONT-EN-ROYANS BOURG", "LAT": 45.061667, "LON": 5.341667, "ALTI": 200, "MIN_DATE": "1949-01-01", "MAX_DATE": "1956-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.341667, 45.061667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38334001, "NOM_USUEL": "REVEL", "LAT": 45.185, "LON": 5.869167, "ALTI": 645, "MIN_DATE": "1948-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.869167, 45.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38342001, "NOM_USUEL": "ROISSARD", "LAT": 44.882167, "LON": 5.6395, "ALTI": 746, "MIN_DATE": "1949-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.6395, 44.882167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38367002, "NOM_USUEL": "ST-BERNARD_BG", "LAT": 45.33, "LON": 5.903333, "ALTI": 910, "MIN_DATE": "1876-01-01", "MAX_DATE": "1878-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.903333, 45.33 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38384001, "NOM_USUEL": "GRENOBLE-ST GEOIRS", "LAT": 45.364, "LON": 5.313333, "ALTI": 384, "MIN_DATE": "1941-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.313333, 45.364 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38395002, "NOM_USUEL": "SAINT-HILAIRE", "LAT": 45.31, "LON": 5.886667, "ALTI": 1150, "MIN_DATE": "1948-01-01", "MAX_DATE": "1964-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.886667, 45.31 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38412001, "NOM_USUEL": "ST-LAURENT-DU-PONT", "LAT": 45.4145, "LON": 5.739833, "ALTI": 389, "MIN_DATE": "1949-01-01", "MAX_DATE": "2011-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.739833, 45.4145 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38416001, "NOM_USUEL": "ST-MARCELLIN", "LAT": 45.148333, "LON": 5.323333, "ALTI": 281, "MIN_DATE": "1948-01-01", "MAX_DATE": "1986-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.323333, 45.148333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38442001, "NOM_USUEL": "GRANDE-CHARTREUSE", "LAT": 45.363333, "LON": 5.791833, "ALTI": 945, "MIN_DATE": "1947-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.791833, 45.363333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38442002, "NOM_USUEL": "ST-PIERRE-CHARTREUSE-COTTAVES", "LAT": 45.341667, "LON": 5.815, "ALTI": 1080, "MIN_DATE": "1948-01-01", "MAX_DATE": "1956-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.815, 45.341667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38446001, "NOM_USUEL": "ST-PIERRE-D'ENTREMONT", "LAT": 45.413333, "LON": 5.85, "ALTI": 644, "MIN_DATE": "1948-01-01", "MAX_DATE": "2002-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.85, 45.413333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38478001, "NOM_USUEL": "SECHILIENNE BOURG", "LAT": 45.053333, "LON": 5.835, "ALTI": 370, "MIN_DATE": "1948-01-01", "MAX_DATE": "1956-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.835, 45.053333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38503001, "NOM_USUEL": "LA TERRASSE ECOLE", "LAT": 45.326667, "LON": 5.931667, "ALTI": 234, "MIN_DATE": "1949-01-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.931667, 45.326667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38504001, "NOM_USUEL": "THEYS", "LAT": 45.302333, "LON": 5.995667, "ALTI": 615, "MIN_DATE": "1949-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.995667, 45.302333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38509001, "NOM_USUEL": "LA TOUR-DU-PIN", "LAT": 45.56, "LON": 5.455, "ALTI": 339, "MIN_DATE": "1949-01-01", "MAX_DATE": "1991-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.455, 45.56 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38514001, "NOM_USUEL": "TREMINIS BOURG", "LAT": 44.746667, "LON": 5.766667, "ALTI": 900, "MIN_DATE": "1948-01-01", "MAX_DATE": "1969-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.766667, 44.746667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38516002, "NOM_USUEL": "LA TRONCHE ASILE DE VIEILLARDS", "LAT": 45.205, "LON": 5.743333, "ALTI": 215, "MIN_DATE": "1949-01-01", "MAX_DATE": "1952-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.743333, 45.205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38527001, "NOM_USUEL": "VAUJANY", "LAT": 45.149167, "LON": 6.047167, "ALTI": 772, "MIN_DATE": "1937-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.047167, 45.149167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38529003, "NOM_USUEL": "VAULNAVEYS-LE-HAUT URIAGE", "LAT": 45.12, "LON": 5.811667, "ALTI": 414, "MIN_DATE": "1949-01-01", "MAX_DATE": "1968-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.811667, 45.12 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38544001, "NOM_USUEL": "VIENNE", "LAT": 45.533333, "LON": 4.881667, "ALTI": 274, "MIN_DATE": "1947-01-01", "MAX_DATE": "2005-01-31" }, "geometry": { "type": "Point", "coordinates": [ 4.881667, 45.533333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38548002, "NOM_USUEL": "VILLARD-DE-LANS-GEND", "LAT": 45.070333, "LON": 5.552333, "ALTI": 1031, "MIN_DATE": "1916-01-01", "MAX_DATE": "1969-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.552333, 45.070333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38559001, "NOM_USUEL": "VINAY BOURG", "LAT": 45.21, "LON": 5.401667, "ALTI": 260, "MIN_DATE": "1949-01-01", "MAX_DATE": "1954-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.401667, 45.21 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38002400, "NOM_USUEL": "Prapoutel Pipay", "LAT": 45.25, "LON": 5.98, "ALTI": 1345, "MIN_DATE": "1972-01-13", "MAX_DATE": "1994-04-03" }, "geometry": { "type": "Point", "coordinates": [ 5.98, 45.25 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38002403, "NOM_USUEL": "La Jasse Prapoutel", "LAT": 45.3, "LON": 5.97, "ALTI": 2000, "MIN_DATE": "1987-02-13", "MAX_DATE": "1987-04-28" }, "geometry": { "type": "Point", "coordinates": [ 5.97, 45.3 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38002404, "NOM_USUEL": "Prapoutel", "LAT": 45.243333, "LON": 6.017167, "ALTI": 1870, "MIN_DATE": "1995-01-03", "MAX_DATE": "1996-04-13" }, "geometry": { "type": "Point", "coordinates": [ 6.017167, 45.243333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38002405, "NOM_USUEL": "Prapoutel", "LAT": 45.245833, "LON": 6.016667, "ALTI": 1570, "MIN_DATE": "1996-12-14", "MAX_DATE": "2004-03-21" }, "geometry": { "type": "Point", "coordinates": [ 6.016667, 45.245833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38002406, "NOM_USUEL": "PRAPOUTEL", "LAT": 45.256167, "LON": 5.995667, "ALTI": 1355, "MIN_DATE": "2004-12-19", "MAX_DATE": "2024-03-23" }, "geometry": { "type": "Point", "coordinates": [ 5.995667, 45.256167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38005001, "NOM_USUEL": "ALLEMOND", "LAT": 45.203333, "LON": 6.040333, "ALTI": 1270, "MIN_DATE": "1959-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.040333, 45.203333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38005400, "NOM_USUEL": "Le Rivier d Allemond", "LAT": 45.205833, "LON": 6.0425, "ALTI": 1280, "MIN_DATE": "1991-12-04", "MAX_DATE": "1992-05-01" }, "geometry": { "type": "Point", "coordinates": [ 6.0425, 45.205833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38005402, "NOM_USUEL": "AIGLETON-NIVOSE", "LAT": 45.231, "LON": 6.038167, "ALTI": 2240, "MIN_DATE": "2005-02-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.038167, 45.231 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38006400, "NOM_USUEL": "Le Collet d Allevard", "LAT": 45.3895, "LON": 6.123833, "ALTI": 1642, "MIN_DATE": "1985-12-16", "MAX_DATE": "2024-03-10" }, "geometry": { "type": "Point", "coordinates": [ 6.123833, 45.3895 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38006402, "NOM_USUEL": "Le Collet d Allevard", "LAT": 45.38, "LON": 6.1, "ALTI": 1650, "MIN_DATE": "1971-01-08", "MAX_DATE": "1971-04-11" }, "geometry": { "type": "Point", "coordinates": [ 6.1, 45.38 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38020001, "NOM_USUEL": "AURIS", "LAT": 45.031667, "LON": 6.066667, "ALTI": 730, "MIN_DATE": "1976-01-01", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.066667, 45.031667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38020400, "NOM_USUEL": "AURIS-EN-OISANS", "LAT": 45.057167, "LON": 6.076333, "ALTI": 1600, "MIN_DATE": "1986-02-10", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 6.076333, 45.057167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38021400, "NOM_USUEL": "AUTRANS-NIVO", "LAT": 45.227167, "LON": 5.581167, "ALTI": 1260, "MIN_DATE": "2004-12-19", "MAX_DATE": "2017-03-18" }, "geometry": { "type": "Point", "coordinates": [ 5.581167, 45.227167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38046002, "NOM_USUEL": "COL DE ROSSATIERE", "LAT": 45.4555, "LON": 5.401, "ALTI": 568, "MIN_DATE": "2019-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.401, 45.4555 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38052002, "NOM_USUEL": "LE BOURG-D'OISANS", "LAT": 45.053333, "LON": 6.028333, "ALTI": 768, "MIN_DATE": "1952-03-01", "MAX_DATE": "1972-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.028333, 45.053333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38052400, "NOM_USUEL": "Bourg d Oisans", "LAT": 45.056667, "LON": 6.040833, "ALTI": 720, "MIN_DATE": "1986-12-16", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.040833, 45.056667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38053003, "NOM_USUEL": "BOURGOIN", "LAT": 45.608, "LON": 5.309333, "ALTI": 358, "MIN_DATE": "2003-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.309333, 45.608 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38064001, "NOM_USUEL": "CESSIEU", "LAT": 45.5635, "LON": 5.404167, "ALTI": 304, "MIN_DATE": "1996-06-01", "MAX_DATE": "2012-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.404167, 45.5635 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38087001, "NOM_USUEL": "CHASSE", "LAT": 45.581667, "LON": 4.798333, "ALTI": 222, "MIN_DATE": "1975-01-01", "MAX_DATE": "2000-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.798333, 45.581667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38090400, "NOM_USUEL": "Col de l Arzelier", "LAT": 44.989833, "LON": 5.594167, "ALTI": 1156, "MIN_DATE": "1989-01-09", "MAX_DATE": "2004-03-04" }, "geometry": { "type": "Point", "coordinates": [ 5.594167, 44.989833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38092001, "NOM_USUEL": "CHATELUS BOURNILLON", "LAT": 45.056667, "LON": 5.373333, "ALTI": 309, "MIN_DATE": "1952-01-01", "MAX_DATE": "1978-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.373333, 45.056667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38095001, "NOM_USUEL": "CHATTE_SAPC", "LAT": 45.140167, "LON": 5.306, "ALTI": 272, "MIN_DATE": "1987-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.306, 45.140167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38100001, "NOM_USUEL": "LE CHEYLAS BOURG", "LAT": 45.371667, "LON": 5.993333, "ALTI": 244, "MIN_DATE": "1975-01-01", "MAX_DATE": "1979-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.993333, 45.371667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38103001, "NOM_USUEL": "CHICHILIANNE", "LAT": 44.812, "LON": 5.571, "ALTI": 1010, "MIN_DATE": "1962-04-07", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.571, 44.812 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38103002, "NOM_USUEL": "CHICHILIANNE_SAPC", "LAT": 44.810333, "LON": 5.580333, "ALTI": 984, "MIN_DATE": "2019-04-30", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.580333, 44.810333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38113001, "NOM_USUEL": "CLELLES", "LAT": 44.825333, "LON": 5.616833, "ALTI": 815, "MIN_DATE": "1962-09-01", "MAX_DATE": "2018-08-20" }, "geometry": { "type": "Point", "coordinates": [ 5.616833, 44.825333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38113003, "NOM_USUEL": "CLELLES LE PERCY", "LAT": 44.826667, "LON": 5.621667, "ALTI": 800, "MIN_DATE": "1960-09-01", "MAX_DATE": "1960-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.621667, 44.826667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38113004, "NOM_USUEL": "CLELLES LE CHAFFAUD", "LAT": 44.826667, "LON": 5.621667, "ALTI": 820, "MIN_DATE": "1955-01-01", "MAX_DATE": "1960-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.621667, 44.826667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38126001, "NOM_USUEL": "CORENC LA REVIREE", "LAT": 45.22, "LON": 5.765, "ALTI": 227, "MIN_DATE": "1962-10-01", "MAX_DATE": "1988-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.765, 45.22 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38133001, "NOM_USUEL": "COUBLEVIE", "LAT": 45.355333, "LON": 5.596333, "ALTI": 300, "MIN_DATE": "2004-09-17", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.596333, 45.355333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38135001, "NOM_USUEL": "COURTENAY", "LAT": 45.778333, "LON": 5.376667, "ALTI": 280, "MIN_DATE": "1970-10-01", "MAX_DATE": "1987-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.376667, 45.778333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38135002, "NOM_USUEL": "COURTENAY", "LAT": 45.738333, "LON": 5.388333, "ALTI": 315, "MIN_DATE": "1988-02-01", "MAX_DATE": "2013-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.388333, 45.738333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38157001, "NOM_USUEL": "ESTRABLIN BOURG", "LAT": 45.516667, "LON": 4.965, "ALTI": 225, "MIN_DATE": "1975-01-01", "MAX_DATE": "1982-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.965, 45.516667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38160001, "NOM_USUEL": "EYZIN-PINET", "LAT": 45.473333, "LON": 5.0, "ALTI": 310, "MIN_DATE": "1959-01-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.0, 45.473333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38163002, "NOM_USUEL": "LA-FERRIERE", "LAT": 45.319333, "LON": 6.087667, "ALTI": 930, "MIN_DATE": "1955-10-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.087667, 45.319333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38163003, "NOM_USUEL": "LA FERRIERE USINE RIONDET", "LAT": 45.318333, "LON": 6.086667, "ALTI": 815, "MIN_DATE": "1950-01-01", "MAX_DATE": "1955-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.086667, 45.318333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38163004, "NOM_USUEL": "LA FERRIERE", "LAT": 45.318333, "LON": 6.086667, "ALTI": 2141, "MIN_DATE": "1951-06-01", "MAX_DATE": "1953-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.086667, 45.318333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38170001, "NOM_USUEL": "FONTANIL", "LAT": 45.255667, "LON": 5.661833, "ALTI": 200, "MIN_DATE": "1953-03-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.661833, 45.255667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38185012, "NOM_USUEL": "GRENOBLE-CEA-RADOME", "LAT": 45.2115, "LON": 5.682833, "ALTI": 213, "MIN_DATE": "2019-09-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.682833, 45.2115 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38186001, "NOM_USUEL": "GRESSE", "LAT": 44.899833, "LON": 5.565667, "ALTI": 1220, "MIN_DATE": "1950-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.565667, 44.899833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38186400, "NOM_USUEL": "Gresse en Vercors", "LAT": 44.893167, "LON": 5.547167, "ALTI": 1254, "MIN_DATE": "1989-01-09", "MAX_DATE": "2024-03-11" }, "geometry": { "type": "Point", "coordinates": [ 5.547167, 44.893167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38187400, "NOM_USUEL": "LE GUA-NIVOSE", "LAT": 45.015, "LON": 5.588667, "ALTI": 1646, "MIN_DATE": "1992-08-24", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.588667, 45.015 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38191001, "NOM_USUEL": "HUEZ", "LAT": 45.08, "LON": 6.051667, "ALTI": 1750, "MIN_DATE": "1969-01-01", "MAX_DATE": "1974-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.051667, 45.08 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38191002, "NOM_USUEL": "ALPE-D'HUEZ", "LAT": 45.087833, "LON": 6.085667, "ALTI": 1860, "MIN_DATE": "1988-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.085667, 45.087833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38191400, "NOM_USUEL": "L Alpe d Huez (SATA)", "LAT": 45.097667, "LON": 6.072833, "ALTI": 1860, "MIN_DATE": "1978-02-12", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.072833, 45.097667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38191402, "NOM_USUEL": "L Alpe d Huez 2700", "LAT": 45.1, "LON": 6.1, "ALTI": 2700, "MIN_DATE": "1989-12-11", "MAX_DATE": "1991-01-02" }, "geometry": { "type": "Point", "coordinates": [ 6.1, 45.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38191407, "NOM_USUEL": "L Alpe d Huez SATA 1860", "LAT": 45.08, "LON": 6.05, "ALTI": 1850, "MIN_DATE": "1970-12-21", "MAX_DATE": "1976-04-10" }, "geometry": { "type": "Point", "coordinates": [ 6.05, 45.08 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38191408, "NOM_USUEL": "L Alpe d Huez 2350", "LAT": 45.105, "LON": 6.0975, "ALTI": 2340, "MIN_DATE": "1991-01-03", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.0975, 45.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38204001, "NOM_USUEL": "LALLEY", "LAT": 44.756667, "LON": 5.675, "ALTI": 850, "MIN_DATE": "1969-01-01", "MAX_DATE": "1996-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.675, 44.756667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38205400, "NOM_USUEL": "Lans en Vercors", "LAT": 45.1115, "LON": 5.609167, "ALTI": 1400, "MIN_DATE": "1986-01-09", "MAX_DATE": "2024-02-12" }, "geometry": { "type": "Point", "coordinates": [ 5.609167, 45.1115 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38207001, "NOM_USUEL": "LAVALDENS", "LAT": 44.990667, "LON": 5.883333, "ALTI": 1070, "MIN_DATE": "1950-01-01", "MAX_DATE": "2024-04-05" }, "geometry": { "type": "Point", "coordinates": [ 5.883333, 44.990667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38210001, "NOM_USUEL": "LEYRIEU BOURG", "LAT": 45.756667, "LON": 5.255, "ALTI": 210, "MIN_DATE": "1956-07-12", "MAX_DATE": "1980-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.255, 45.756667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38215001, "NOM_USUEL": "LUZINAY BOURG", "LAT": 45.59, "LON": 4.955, "ALTI": 185, "MIN_DATE": "1982-08-01", "MAX_DATE": "1984-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.955, 45.59 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38215002, "NOM_USUEL": "LUZINAY", "LAT": 45.590667, "LON": 4.972167, "ALTI": 310, "MIN_DATE": "1986-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.972167, 45.590667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38226002, "NOM_USUEL": "MENS", "LAT": 44.815833, "LON": 5.754667, "ALTI": 780, "MIN_DATE": "1950-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.754667, 44.815833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38229001, "NOM_USUEL": "MEYLAN", "LAT": 45.228833, "LON": 5.778333, "ALTI": 469, "MIN_DATE": "2011-06-28", "MAX_DATE": "2018-08-27" }, "geometry": { "type": "Point", "coordinates": [ 5.778333, 45.228833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38238001, "NOM_USUEL": "MOIDIEU-DETOURBE", "LAT": 45.495, "LON": 5.04, "ALTI": 262, "MIN_DATE": "1982-06-01", "MAX_DATE": "1983-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.04, 45.495 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38247001, "NOM_USUEL": "MONTALIEU-VERCIEU LE MARAIS", "LAT": 45.815, "LON": 5.403333, "ALTI": 222, "MIN_DATE": "1950-05-01", "MAX_DATE": "1961-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.403333, 45.815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38248002, "NOM_USUEL": "MONTAUD", "LAT": 45.263333, "LON": 5.56, "ALTI": 740, "MIN_DATE": "1999-06-01", "MAX_DATE": "2001-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.56, 45.263333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38253001, "NOM_USUEL": "MONT-DE-LANS", "LAT": 45.036667, "LON": 6.13, "ALTI": 1050, "MIN_DATE": "1950-04-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.13, 45.036667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38253002, "NOM_USUEL": "LES DEUX-ALPES", "LAT": 45.018333, "LON": 6.126667, "ALTI": 1670, "MIN_DATE": "1991-12-01", "MAX_DATE": "2012-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.126667, 45.018333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38253400, "NOM_USUEL": "Les 2 Alpes (Toura NE)", "LAT": 44.996667, "LON": 6.171833, "ALTI": 2550, "MIN_DATE": "1971-02-05", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 6.171833, 44.996667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38253403, "NOM_USUEL": "Les 2 Alpes (Pied Mouttet)", "LAT": 45.009167, "LON": 6.106667, "ALTI": 2084, "MIN_DATE": "1984-03-12", "MAX_DATE": "2015-04-04" }, "geometry": { "type": "Point", "coordinates": [ 6.106667, 45.009167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38253404, "NOM_USUEL": "Les 2 Alpes (GN)", "LAT": 45.007333, "LON": 6.122833, "ALTI": 1630, "MIN_DATE": "1974-12-24", "MAX_DATE": "2011-02-03" }, "geometry": { "type": "Point", "coordinates": [ 6.122833, 45.007333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38253407, "NOM_USUEL": "Les 2 ALpes Jandri", "LAT": 44.997, "LON": 6.204667, "ALTI": 3200, "MIN_DATE": "2002-06-23", "MAX_DATE": "2023-07-01" }, "geometry": { "type": "Point", "coordinates": [ 6.204667, 44.997 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38264400, "NOM_USUEL": "L Alpe du Grand Serre", "LAT": 45.020833, "LON": 5.8625, "ALTI": 1382, "MIN_DATE": "1986-12-17", "MAX_DATE": "2024-03-16" }, "geometry": { "type": "Point", "coordinates": [ 5.8625, 45.020833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38269004, "NOM_USUEL": "LA MURE- RADOME", "LAT": 44.935, "LON": 5.786167, "ALTI": 885, "MIN_DATE": "2003-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.786167, 44.935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38275001, "NOM_USUEL": "SERRE-NERPOL", "LAT": 45.284167, "LON": 5.352833, "ALTI": 630, "MIN_DATE": "1996-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.352833, 45.284167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38275002, "NOM_USUEL": "SERRE-NERPOL_SAPC", "LAT": 45.2845, "LON": 5.353, "ALTI": 632, "MIN_DATE": "2017-12-28", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.353, 45.2845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38289401, "NOM_USUEL": "Olmet", "LAT": 45.128167, "LON": 6.071667, "ALTI": 1350, "MIN_DATE": "2003-12-25", "MAX_DATE": "2024-04-04" }, "geometry": { "type": "Point", "coordinates": [ 6.071667, 45.128167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38294001, "NOM_USUEL": "PANOSSAS", "LAT": 45.668667, "LON": 5.203667, "ALTI": 250, "MIN_DATE": "2013-08-14", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.203667, 45.668667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38301001, "NOM_USUEL": "PERCY BOURG", "LAT": 44.8, "LON": 5.648333, "ALTI": 846, "MIN_DATE": "1952-01-01", "MAX_DATE": "1962-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.648333, 44.8 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38305001, "NOM_USUEL": "LE PIN ECOLE", "LAT": 45.456667, "LON": 5.505, "ALTI": 530, "MIN_DATE": "1950-01-01", "MAX_DATE": "1977-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.505, 45.456667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38311001, "NOM_USUEL": "POMMIER-DE-BEAUREPAIRE", "LAT": 45.408333, "LON": 5.126667, "ALTI": 480, "MIN_DATE": "1970-10-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.126667, 45.408333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38315002, "NOM_USUEL": "PONT-DE-BEAUVOISIN", "LAT": 45.528333, "LON": 5.671333, "ALTI": 284, "MIN_DATE": "1985-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.671333, 45.528333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38316001, "NOM_USUEL": "PONT-DE-CHERUY", "LAT": 45.7495, "LON": 5.1725, "ALTI": 202, "MIN_DATE": "1988-01-01", "MAX_DATE": "2008-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.1725, 45.7495 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38319002, "NOM_USUEL": "PONT-EN-ROYANS", "LAT": 45.061667, "LON": 5.341667, "ALTI": 200, "MIN_DATE": "1955-01-01", "MAX_DATE": "1961-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.341667, 45.061667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38325001, "NOM_USUEL": "PROVEYSIEUX", "LAT": 45.275, "LON": 5.706667, "ALTI": 600, "MIN_DATE": "1961-07-04", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.706667, 45.275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38333001, "NOM_USUEL": "RENCUREL-BALME", "LAT": 45.086667, "LON": 5.466667, "ALTI": 670, "MIN_DATE": "1978-05-01", "MAX_DATE": "1991-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.466667, 45.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38333002, "NOM_USUEL": "RENCUREL", "LAT": 45.103333, "LON": 5.475, "ALTI": 800, "MIN_DATE": "1991-08-01", "MAX_DATE": "2005-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.475, 45.103333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38333003, "NOM_USUEL": "RENCUREL", "LAT": 45.113333, "LON": 5.474333, "ALTI": 885, "MIN_DATE": "2006-04-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.474333, 45.113333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38336001, "NOM_USUEL": "REVENTIN", "LAT": 45.478667, "LON": 4.810667, "ALTI": 295, "MIN_DATE": "2004-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.810667, 45.478667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38340001, "NOM_USUEL": "LES ROCHES-DE-CONDRIEU SEAV", "LAT": 45.453333, "LON": 4.766667, "ALTI": 350, "MIN_DATE": "1950-01-01", "MAX_DATE": "1953-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.766667, 45.453333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38347001, "NOM_USUEL": "ROYBON", "LAT": 45.218333, "LON": 5.251667, "ALTI": 640, "MIN_DATE": "1956-07-21", "MAX_DATE": "2003-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.251667, 45.218333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38349001, "NOM_USUEL": "SABLONS", "LAT": 45.329667, "LON": 4.768667, "ALTI": 136, "MIN_DATE": "1959-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.768667, 45.329667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38362001, "NOM_USUEL": "ST AUPRE_SAPC", "LAT": 45.392667, "LON": 5.657333, "ALTI": 450, "MIN_DATE": "2007-05-16", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.657333, 45.392667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38366001, "NOM_USUEL": "ST-BAUDILLE", "LAT": 44.796, "LON": 5.796167, "ALTI": 1040, "MIN_DATE": "1959-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.796167, 44.796 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38367001, "NOM_USUEL": "ST-BERNARD", "LAT": 45.325, "LON": 5.9, "ALTI": 910, "MIN_DATE": "1988-01-01", "MAX_DATE": "2001-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.9, 45.325 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38375001, "NOM_USUEL": "ST-CHRISTOPHE", "LAT": 44.9455, "LON": 6.188167, "ALTI": 1570, "MIN_DATE": "1963-12-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.188167, 44.9455 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38375002, "NOM_USUEL": "ST-CHRISTOPHE-OISANS-ECRINS", "LAT": 44.956667, "LON": 6.176667, "ALTI": 1400, "MIN_DATE": "1952-04-01", "MAX_DATE": "1963-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.176667, 44.956667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38375003, "NOM_USUEL": "ST-CHRISTOPHE-OISANS-ETAGES", "LAT": 44.956667, "LON": 6.176667, "ALTI": 1600, "MIN_DATE": "1954-09-01", "MAX_DATE": "1964-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.176667, 44.956667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38375004, "NOM_USUEL": "ST-CHRISTOPHE-OISANS-BERARDE", "LAT": 44.956667, "LON": 6.176667, "ALTI": 1738, "MIN_DATE": "1953-05-01", "MAX_DATE": "1953-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.176667, 44.956667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38375009, "NOM_USUEL": "ST CHRISTOPHE EN OISANS_SAPC", "LAT": 44.945833, "LON": 6.188333, "ALTI": 1564, "MIN_DATE": "2016-11-16", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.188333, 44.945833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38375400, "NOM_USUEL": "St Christophe", "LAT": 44.946667, "LON": 6.188333, "ALTI": 1570, "MIN_DATE": "1983-12-12", "MAX_DATE": "2024-04-01" }, "geometry": { "type": "Point", "coordinates": [ 6.188333, 44.946667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38375402, "NOM_USUEL": "LES ECRINS-NIVOSE", "LAT": 44.936833, "LON": 6.346167, "ALTI": 2970, "MIN_DATE": "1993-11-09", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.346167, 44.936833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38375403, "NOM_USUEL": "La Berarde", "LAT": 44.932667, "LON": 6.292, "ALTI": 1738, "MIN_DATE": "2001-08-02", "MAX_DATE": "2023-09-03" }, "geometry": { "type": "Point", "coordinates": [ 6.292, 44.932667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38378001, "NOM_USUEL": "SAINT-CLAIR-DU-RHONE", "LAT": 45.44, "LON": 4.775, "ALTI": 162, "MIN_DATE": "1956-03-01", "MAX_DATE": "1956-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.775, 45.44 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38386001, "NOM_USUEL": "ST-GEOIRE-EN-VALDAINE", "LAT": 45.463333, "LON": 5.653333, "ALTI": 380, "MIN_DATE": "2000-07-01", "MAX_DATE": "2005-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.653333, 45.463333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38390001, "NOM_USUEL": "SAINT-GERVAIS PIERRE MOUTON", "LAT": 45.201667, "LON": 5.481667, "ALTI": 249, "MIN_DATE": "1950-01-01", "MAX_DATE": "1981-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.481667, 45.201667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38390002, "NOM_USUEL": "ST-GERVAIS", "LAT": 45.205, "LON": 5.52, "ALTI": 1020, "MIN_DATE": "1989-12-01", "MAX_DATE": "1993-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.52, 45.205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38395001, "NOM_USUEL": "ST-HILAIRE", "LAT": 45.307833, "LON": 5.884, "ALTI": 970, "MIN_DATE": "1964-11-01", "MAX_DATE": "2018-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.884, 45.307833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38395004, "NOM_USUEL": "SAINT-HILAIRE_SAPC", "LAT": 45.315, "LON": 5.884833, "ALTI": 990, "MIN_DATE": "2017-11-17", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.884833, 45.315 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38395400, "NOM_USUEL": "St Hilaire", "LAT": 45.308333, "LON": 5.883333, "ALTI": 970, "MIN_DATE": "1983-12-12", "MAX_DATE": "2018-06-06" }, "geometry": { "type": "Point", "coordinates": [ 5.883333, 45.308333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38395403, "NOM_USUEL": "ST HILAIRE-NIVOSE", "LAT": 45.313833, "LON": 5.8635, "ALTI": 1756, "MIN_DATE": "1993-09-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.8635, 45.313833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38399001, "NOM_USUEL": "ST-JEAN-DE-BOURNAY", "LAT": 45.5, "LON": 5.14, "ALTI": 369, "MIN_DATE": "1956-08-01", "MAX_DATE": "2010-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.14, 45.5 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38401001, "NOM_USUEL": "ST-JEAN-DE-SOUDAIN", "LAT": 45.565, "LON": 5.433333, "ALTI": 307, "MIN_DATE": "1991-08-01", "MAX_DATE": "1996-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.433333, 45.565 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38412002, "NOM_USUEL": "SAINT LAURENT DU PONT AUTO", "LAT": 45.3875, "LON": 5.718, "ALTI": 380, "MIN_DATE": "2012-01-11", "MAX_DATE": "2018-03-27" }, "geometry": { "type": "Point", "coordinates": [ 5.718, 45.3875 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38421002, "NOM_USUEL": "ST-M-D'HERES-GALOCHERE", "LAT": 45.169167, "LON": 5.768833, "ALTI": 220, "MIN_DATE": "2004-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.768833, 45.169167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38424001, "NOM_USUEL": "ST-MAURICE-EN-TRIEVES", "LAT": 44.755, "LON": 5.656667, "ALTI": 1050, "MIN_DATE": "1997-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.656667, 44.755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38439400, "NOM_USUEL": "COL DU BARIOZ", "LAT": 45.324667, "LON": 6.047333, "ALTI": 1424, "MIN_DATE": "2013-12-10", "MAX_DATE": "2017-03-24" }, "geometry": { "type": "Point", "coordinates": [ 6.047333, 45.324667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38442004, "NOM_USUEL": "LA SCIA", "LAT": 45.333333, "LON": 5.833333, "ALTI": 1700, "MIN_DATE": "1993-01-02", "MAX_DATE": "1995-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.833333, 45.333333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38442005, "NOM_USUEL": "ST-PIERRE-DE-CH", "LAT": 45.343333, "LON": 5.816667, "ALTI": 895, "MIN_DATE": "1996-09-01", "MAX_DATE": "2005-08-07" }, "geometry": { "type": "Point", "coordinates": [ 5.816667, 45.343333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38442008, "NOM_USUEL": "ST-PIERRE-LES EGAUX", "LAT": 45.317333, "LON": 5.803833, "ALTI": 950, "MIN_DATE": "2005-07-28", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.803833, 45.317333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38442400, "NOM_USUEL": "St Pierre de Chartreuse", "LAT": 45.345, "LON": 5.8465, "ALTI": 1700, "MIN_DATE": "1986-12-23", "MAX_DATE": "2023-03-05" }, "geometry": { "type": "Point", "coordinates": [ 5.8465, 45.345 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38446003, "NOM_USUEL": "ST-PIERRE-D'ENTREMONT", "LAT": 45.411, "LON": 5.843333, "ALTI": 870, "MIN_DATE": "2002-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.843333, 45.411 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38453001, "NOM_USUEL": "ST-ROMANS", "LAT": 45.103167, "LON": 5.351833, "ALTI": 410, "MIN_DATE": "1994-05-01", "MAX_DATE": "2015-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.351833, 45.103167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38465001, "NOM_USUEL": "SAINT-VICTOR-DE-MORESTEL", "LAT": 45.693333, "LON": 5.501667, "ALTI": 242, "MIN_DATE": "1951-01-01", "MAX_DATE": "1956-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.501667, 45.693333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38469001, "NOM_USUEL": "LA SALETTE", "LAT": 44.86, "LON": 5.978333, "ALTI": 1770, "MIN_DATE": "1970-01-01", "MAX_DATE": "2001-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.978333, 44.86 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38469400, "NOM_USUEL": "La Salette", "LAT": 44.85, "LON": 5.98, "ALTI": 1770, "MIN_DATE": "1983-12-12", "MAX_DATE": "1990-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.98, 44.85 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38472400, "NOM_USUEL": "Col de Porte", "LAT": 45.3, "LON": 5.77, "ALTI": 1325, "MIN_DATE": "1983-12-14", "MAX_DATE": "1992-01-28" }, "geometry": { "type": "Point", "coordinates": [ 5.77, 45.3 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38472403, "NOM_USUEL": "COL DE PORTE-NIVOSE", "LAT": 45.295, "LON": 5.765333, "ALTI": 1325, "MIN_DATE": "2003-04-10", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.765333, 45.295 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38499001, "NOM_USUEL": "SUSVILLE CITE PRE-LUZAT", "LAT": 44.926667, "LON": 5.773333, "ALTI": 885, "MIN_DATE": "1955-07-01", "MAX_DATE": "1960-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.773333, 44.926667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38501001, "NOM_USUEL": "TENCIN", "LAT": 45.300167, "LON": 5.951333, "ALTI": 233, "MIN_DATE": "1950-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.951333, 45.300167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38504002, "NOM_USUEL": "PIPAY_SAPC", "LAT": 45.265333, "LON": 6.016, "ALTI": 1578, "MIN_DATE": "2009-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.016, 45.265333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38514005, "NOM_USUEL": "TREMINIS", "LAT": 44.746667, "LON": 5.75, "ALTI": 850, "MIN_DATE": "1998-01-01", "MAX_DATE": "1999-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.75, 44.746667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38516001, "NOM_USUEL": "LA TRONCHE VILLA BELLEDONNE", "LAT": 45.205, "LON": 5.743333, "ALTI": 225, "MIN_DATE": "1950-01-02", "MAX_DATE": "1965-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.743333, 45.205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38517001, "NOM_USUEL": "TULLINS", "LAT": 45.303, "LON": 5.489167, "ALTI": 190, "MIN_DATE": "1950-03-01", "MAX_DATE": "2015-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.489167, 45.303 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38518001, "NOM_USUEL": "VALBONNAIS", "LAT": 44.9005, "LON": 5.906167, "ALTI": 785, "MIN_DATE": "1963-05-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.906167, 44.9005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38522001, "NOM_USUEL": "VALJOUFFREY", "LAT": 44.88, "LON": 6.018333, "ALTI": 980, "MIN_DATE": "1950-01-01", "MAX_DATE": "2014-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.018333, 44.88 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38522002, "NOM_USUEL": "VALJOUFFREY LE DESERT", "LAT": 44.869167, "LON": 6.090333, "ALTI": 1270, "MIN_DATE": "1958-07-01", "MAX_DATE": "1971-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.090333, 44.869167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38522004, "NOM_USUEL": "VALJOUFFREY_SAPC", "LAT": 44.869833, "LON": 6.090167, "ALTI": 1285, "MIN_DATE": "2022-10-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.090167, 44.869833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38524001, "NOM_USUEL": "VARCES", "LAT": 45.1005, "LON": 5.698, "ALTI": 250, "MIN_DATE": "1958-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.698, 45.1005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38527002, "NOM_USUEL": "VAUJANY", "LAT": 45.156667, "LON": 6.076667, "ALTI": 1520, "MIN_DATE": "1950-01-01", "MAX_DATE": "1958-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.076667, 45.156667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38527400, "NOM_USUEL": "VAUJANY-NIVO", "LAT": 45.158833, "LON": 6.097667, "ALTI": 1720, "MIN_DATE": "1990-12-22", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 6.097667, 45.158833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38527800, "NOM_USUEL": "VAUJANY_DOUBLE", "LAT": 45.149167, "LON": 6.047, "ALTI": 772, "MIN_DATE": "2022-09-01", "MAX_DATE": "2023-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.047, 45.149167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38529001, "NOM_USUEL": "VAULNAVEYS-LE-HAUT LA GORGE", "LAT": 45.12, "LON": 5.811667, "ALTI": 355, "MIN_DATE": "1968-09-01", "MAX_DATE": "1974-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.811667, 45.12 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38529002, "NOM_USUEL": "VAULNAVEYS-LE-HAUT PREMOL", "LAT": 45.12, "LON": 5.811667, "ALTI": 1095, "MIN_DATE": "1955-01-01", "MAX_DATE": "1963-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.811667, 45.12 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38534001, "NOM_USUEL": "VENOSC PLAN DU LAC", "LAT": 44.99, "LON": 6.116667, "ALTI": 1180, "MIN_DATE": "1950-01-01", "MAX_DATE": "1965-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.116667, 44.99 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38534002, "NOM_USUEL": "VENOSC LES DEUX-ALPES", "LAT": 44.99, "LON": 6.116667, "ALTI": 1650, "MIN_DATE": "1952-04-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.116667, 44.99 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38538001, "NOM_USUEL": "LE VERSOUD", "LAT": 45.211667, "LON": 5.856667, "ALTI": 220, "MIN_DATE": "1973-01-01", "MAX_DATE": "1999-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.856667, 45.211667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38538002, "NOM_USUEL": "GRENOBLE - LVD", "LAT": 45.217167, "LON": 5.8485, "ALTI": 220, "MIN_DATE": "1999-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.8485, 45.217167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38545001, "NOM_USUEL": "VIF REYNURE", "LAT": 45.053333, "LON": 5.668333, "ALTI": 285, "MIN_DATE": "1958-01-01", "MAX_DATE": "1968-02-29" }, "geometry": { "type": "Point", "coordinates": [ 5.668333, 45.053333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38548001, "NOM_USUEL": "VILLARD-DE-LANS", "LAT": 45.0785, "LON": 5.561, "ALTI": 1027, "MIN_DATE": "1959-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.561, 45.0785 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38548003, "NOM_USUEL": "VILLARD-BOIS BARBU", "LAT": 45.0715, "LON": 5.542, "ALTI": 1018, "MIN_DATE": "2006-07-01", "MAX_DATE": "2017-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.542, 45.0715 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38548400, "NOM_USUEL": "Villard cote 2000", "LAT": 45.024333, "LON": 5.567667, "ALTI": 1710, "MIN_DATE": "1985-01-09", "MAX_DATE": "2024-03-28" }, "geometry": { "type": "Point", "coordinates": [ 5.567667, 45.024333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38548402, "NOM_USUEL": "Villard de Lans", "LAT": 45.074833, "LON": 5.555333, "ALTI": 1020, "MIN_DATE": "1986-01-01", "MAX_DATE": "2006-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.555333, 45.074833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38548403, "NOM_USUEL": "VILLARD-BOIS-BARBU", "LAT": 45.0715, "LON": 5.542, "ALTI": 1018, "MIN_DATE": "2006-07-01", "MAX_DATE": "2017-02-14" }, "geometry": { "type": "Point", "coordinates": [ 5.542, 45.0715 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38549001, "NOM_USUEL": "VILLARD-NOTRE-DAME VILLAGE", "LAT": 45.018333, "LON": 6.041667, "ALTI": 1550, "MIN_DATE": "1950-04-18", "MAX_DATE": "1965-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.041667, 45.018333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38559004, "NOM_USUEL": "VINAY", "LAT": 45.212, "LON": 5.376833, "ALTI": 400, "MIN_DATE": "2015-03-01", "MAX_DATE": "2016-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.376833, 45.212 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38563001, "NOM_USUEL": "VOIRON PENSIONNAT SAINT-JOSEPH", "LAT": 45.366667, "LON": 5.588333, "ALTI": 292, "MIN_DATE": "1960-02-09", "MAX_DATE": "1961-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.588333, 45.366667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38567001, "NOM_USUEL": "CHAMROUSSE", "LAT": 45.101667, "LON": 5.88, "ALTI": 1650, "MIN_DATE": "1988-11-01", "MAX_DATE": "1998-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.88, 45.101667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38567002, "NOM_USUEL": "CHAMROUSSE", "LAT": 45.128, "LON": 5.878333, "ALTI": 1730, "MIN_DATE": "2002-09-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.878333, 45.128 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38567400, "NOM_USUEL": "CHAMROUSSE ARSELLE", "LAT": 45.098667, "LON": 5.876, "ALTI": 1650, "MIN_DATE": "1971-01-10", "MAX_DATE": "2017-10-16" }, "geometry": { "type": "Point", "coordinates": [ 5.876, 45.098667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38567401, "NOM_USUEL": "Chamrousse", "LAT": 45.13, "LON": 5.9, "ALTI": 2250, "MIN_DATE": "1994-10-26", "MAX_DATE": "2003-11-11" }, "geometry": { "type": "Point", "coordinates": [ 5.9, 45.13 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 38567407, "NOM_USUEL": "Chamrousse Niverolles", "LAT": 45.120667, "LON": 5.895667, "ALTI": 2022, "MIN_DATE": "2000-12-22", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.895667, 45.120667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66003002, "NOM_USUEL": "AMELIE-LES-BAINS-PALALDA", "LAT": 42.475, "LON": 2.67, "ALTI": 234, "MIN_DATE": "1906-01-01", "MAX_DATE": "1919-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.67, 42.475 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66004001, "NOM_USUEL": "ANGLES_LES", "LAT": 42.56, "LON": 2.005, "ALTI": 2017, "MIN_DATE": "1906-01-01", "MAX_DATE": "1959-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.005, 42.56 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66005001, "NOM_USUEL": "ANGOUSTRINE", "LAT": 42.486667, "LON": 1.953333, "ALTI": 1381, "MIN_DATE": "1949-09-19", "MAX_DATE": "2006-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.953333, 42.486667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66005003, "NOM_USUEL": "ANGOUSTRINE-VILLENEUVE-ESCALDE", "LAT": 42.481667, "LON": 1.96, "ALTI": 1350, "MIN_DATE": "1901-01-01", "MAX_DATE": "1904-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.96, 42.481667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66008001, "NOM_USUEL": "ARGELES-SUR-MER MERROUTE", "LAT": 42.546667, "LON": 3.021667, "ALTI": 5, "MIN_DATE": "1932-08-01", "MAX_DATE": "1967-03-31" }, "geometry": { "type": "Point", "coordinates": [ 3.021667, 42.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66008002, "NOM_USUEL": "ARGELES-SUR-MER MERVILLA", "LAT": 42.546667, "LON": 3.021667, "ALTI": 3, "MIN_DATE": "1934-01-01", "MAX_DATE": "1939-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.021667, 42.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66008005, "NOM_USUEL": "ARGELES-SUR-MER BOURG", "LAT": 42.546667, "LON": 3.021667, "ALTI": 18, "MIN_DATE": "1908-01-01", "MAX_DATE": "1908-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.021667, 42.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66009001, "NOM_USUEL": "ARLES-SUR-TECH", "LAT": 42.456667, "LON": 2.633333, "ALTI": 280, "MIN_DATE": "1928-02-01", "MAX_DATE": "1973-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.633333, 42.456667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66009002, "NOM_USUEL": "ARLES-SUR-TECH FORETS", "LAT": 42.456667, "LON": 2.633333, "ALTI": 270, "MIN_DATE": "1924-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.633333, 42.456667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66016002, "NOM_USUEL": "BANYULS-SUR-MER SANATORIUM", "LAT": 42.483333, "LON": 3.128333, "ALTI": 7, "MIN_DATE": "1901-01-01", "MAX_DATE": "1915-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.128333, 42.483333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66017002, "NOM_USUEL": "LE BARCARES AGGLOMERATION", "LAT": 42.786667, "LON": 3.035, "ALTI": 5, "MIN_DATE": "1871-12-01", "MAX_DATE": "1905-02-28" }, "geometry": { "type": "Point", "coordinates": [ 3.035, 42.786667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66019001, "NOM_USUEL": "BELESTA CHATEAU DE CALADROY", "LAT": 42.718333, "LON": 2.605, "ALTI": 300, "MIN_DATE": "1911-01-01", "MAX_DATE": "1914-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.605, 42.718333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66023001, "NOM_USUEL": "BOULETERNERE AGGLOMERATION", "LAT": 42.65, "LON": 2.585, "ALTI": 181, "MIN_DATE": "1901-01-01", "MAX_DATE": "1909-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.585, 42.65 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66025001, "NOM_USUEL": "BOURG-MADAME", "LAT": 42.436667, "LON": 1.945, "ALTI": 1130, "MIN_DATE": "1928-01-01", "MAX_DATE": "1994-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.945, 42.436667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66025005, "NOM_USUEL": "BOURG-MADAME", "LAT": 42.431667, "LON": 1.943333, "ALTI": 1144, "MIN_DATE": "1872-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.943333, 42.431667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66026002, "NOM_USUEL": "BROUILLA BOURG", "LAT": 42.568333, "LON": 2.903333, "ALTI": 56, "MIN_DATE": "1921-01-01", "MAX_DATE": "1923-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.903333, 42.568333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66027001, "NOM_USUEL": "LA CABANASSE", "LAT": 42.5, "LON": 2.111667, "ALTI": 1627, "MIN_DATE": "1934-01-01", "MAX_DATE": "1939-06-29" }, "geometry": { "type": "Point", "coordinates": [ 2.111667, 42.5 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66033001, "NOM_USUEL": "CAMELAS BOURG", "LAT": 42.631667, "LON": 2.683333, "ALTI": 350, "MIN_DATE": "1924-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.683333, 42.631667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66035001, "NOM_USUEL": "CAMPOUSSY EAUX ET FORETS", "LAT": 42.71, "LON": 2.456667, "ALTI": 613, "MIN_DATE": "1932-02-01", "MAX_DATE": "1932-02-29" }, "geometry": { "type": "Point", "coordinates": [ 2.456667, 42.71 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66035002, "NOM_USUEL": "CAMPOUSSY BOURG", "LAT": 42.71, "LON": 2.458333, "ALTI": 656, "MIN_DATE": "1910-01-01", "MAX_DATE": "1914-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.458333, 42.71 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66036001, "NOM_USUEL": "CANAVEILLES AGGLOMERATION", "LAT": 42.536667, "LON": 2.246667, "ALTI": 1191, "MIN_DATE": "1901-01-01", "MAX_DATE": "1915-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.246667, 42.536667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66042001, "NOM_USUEL": "CASSAGNES ECOLE", "LAT": 42.74, "LON": 2.611667, "ALTI": 350, "MIN_DATE": "1947-01-01", "MAX_DATE": "1949-04-30" }, "geometry": { "type": "Point", "coordinates": [ 2.611667, 42.74 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66042002, "NOM_USUEL": "CASSAGNES CUCHOUX", "LAT": 42.74, "LON": 2.611667, "ALTI": 281, "MIN_DATE": "1901-01-01", "MAX_DATE": "1914-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.611667, 42.74 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66043001, "NOM_USUEL": "CASTEIL SAINT-MARTIN", "LAT": 42.531667, "LON": 2.391667, "ALTI": 661, "MIN_DATE": "1901-01-01", "MAX_DATE": "1914-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.391667, 42.531667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66043002, "NOM_USUEL": "CASTEIL", "LAT": 42.531667, "LON": 2.391667, "ALTI": 1692, "MIN_DATE": "1901-01-01", "MAX_DATE": "1914-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.391667, 42.531667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66046001, "NOM_USUEL": "CAUDIES-DE-FENOUILLEDES", "LAT": 42.811667, "LON": 2.373333, "ALTI": 347, "MIN_DATE": "1948-06-01", "MAX_DATE": "1961-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.373333, 42.811667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66047001, "NOM_USUEL": "CAUDIES-DE-CONFLENT-P-C", "LAT": 42.566667, "LON": 2.161667, "ALTI": 332, "MIN_DATE": "1901-01-01", "MAX_DATE": "1910-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.161667, 42.566667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66047003, "NOM_USUEL": "CAUDIES-DE-CONFLENT-ST LOUIS", "LAT": 42.566667, "LON": 2.161667, "ALTI": 750, "MIN_DATE": "1872-10-01", "MAX_DATE": "1873-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.161667, 42.566667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66048001, "NOM_USUEL": "CERBERE", "LAT": 42.441667, "LON": 3.165, "ALTI": 26, "MIN_DATE": "1947-03-01", "MAX_DATE": "2014-10-31" }, "geometry": { "type": "Point", "coordinates": [ 3.165, 42.441667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66049001, "NOM_USUEL": "CERET", "LAT": 42.496333, "LON": 2.7475, "ALTI": 146, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.7475, 42.496333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66049003, "NOM_USUEL": "CERET PEPINIERE", "LAT": 42.488333, "LON": 2.748333, "ALTI": 600, "MIN_DATE": "1901-01-01", "MAX_DATE": "1939-08-30" }, "geometry": { "type": "Point", "coordinates": [ 2.748333, 42.488333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66049005, "NOM_USUEL": "CERET AGGLOMERATION", "LAT": 42.488333, "LON": 2.748333, "ALTI": 171, "MIN_DATE": "1872-02-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.748333, 42.488333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66060002, "NOM_USUEL": "CORSAVY ECOLE", "LAT": 42.466667, "LON": 2.58, "ALTI": 730, "MIN_DATE": "1947-07-01", "MAX_DATE": "1954-01-31" }, "geometry": { "type": "Point", "coordinates": [ 2.58, 42.466667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66060005, "NOM_USUEL": "CORSAVY BOURG", "LAT": 42.466667, "LON": 2.58, "ALTI": 768, "MIN_DATE": "1921-01-01", "MAX_DATE": "1922-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.58, 42.466667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66065001, "NOM_USUEL": "ELNE AGGLOMERATION", "LAT": 42.598333, "LON": 2.971667, "ALTI": 4, "MIN_DATE": "1877-01-01", "MAX_DATE": "1914-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.971667, 42.598333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66069001, "NOM_USUEL": "ESPIRA-DE-L'AGLY AGGLOMERATION", "LAT": 42.778333, "LON": 2.835, "ALTI": 35, "MIN_DATE": "1901-01-01", "MAX_DATE": "1907-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.835, 42.778333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66071003, "NOM_USUEL": "ESTAGEL AGGLOMERATION", "LAT": 42.771667, "LON": 2.698333, "ALTI": 77, "MIN_DATE": "1901-01-01", "MAX_DATE": "1905-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.698333, 42.771667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66071004, "NOM_USUEL": "ESTAGEL PONTS ET CHAUSSEES", "LAT": 42.771667, "LON": 2.698333, "ALTI": 78, "MIN_DATE": "1905-01-01", "MAX_DATE": "1919-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.698333, 42.771667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66074001, "NOM_USUEL": "EUS COMES", "LAT": 42.645, "LON": 2.455, "ALTI": 790, "MIN_DATE": "1877-01-01", "MAX_DATE": "1878-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.455, 42.645 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66078001, "NOM_USUEL": "FILLOLS", "LAT": 42.561667, "LON": 2.41, "ALTI": 725, "MIN_DATE": "1947-01-01", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.41, 42.561667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66078002, "NOM_USUEL": "FILLOLS-BG", "LAT": 42.561667, "LON": 2.408333, "ALTI": 780, "MIN_DATE": "1945-11-01", "MAX_DATE": "1948-12-20" }, "geometry": { "type": "Point", "coordinates": [ 2.408333, 42.561667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66082003, "NOM_USUEL": "FORMIGUERES AGGLOMERATION", "LAT": 42.615, "LON": 2.1, "ALTI": 1480, "MIN_DATE": "1908-05-01", "MAX_DATE": "1915-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.1, 42.615 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66088001, "NOM_USUEL": "ILLE-SUR-TET AGGLOMERATION", "LAT": 42.67, "LON": 2.621667, "ALTI": 141, "MIN_DATE": "1901-01-01", "MAX_DATE": "1911-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.621667, 42.67 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66093001, "NOM_USUEL": "LAROQUE-DES-ALBERES", "LAT": 42.521667, "LON": 2.933333, "ALTI": 506, "MIN_DATE": "1901-01-01", "MAX_DATE": "1901-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.933333, 42.521667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66096001, "NOM_USUEL": "LATOUR-DE-FRANCE", "LAT": 42.765, "LON": 2.651667, "ALTI": 110, "MIN_DATE": "1949-05-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.651667, 42.765 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66096002, "NOM_USUEL": "LATOUR-DE-FRANCE AGGLOMERATION", "LAT": 42.768333, "LON": 2.653333, "ALTI": 295, "MIN_DATE": "1871-12-01", "MAX_DATE": "1905-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.653333, 42.768333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66098001, "NOM_USUEL": "LA LLAGONNE AERO", "LAT": 42.526667, "LON": 2.12, "ALTI": 1710, "MIN_DATE": "1949-05-01", "MAX_DATE": "1980-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.12, 42.526667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66098002, "NOM_USUEL": "LA LLAGONNE BARRAGE", "LAT": 42.526667, "LON": 2.12, "ALTI": 1620, "MIN_DATE": "1946-01-01", "MAX_DATE": "1959-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.12, 42.526667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66098003, "NOM_USUEL": "LA LLAGONNE BOURG", "LAT": 42.526667, "LON": 2.12, "ALTI": 1573, "MIN_DATE": "1924-07-01", "MAX_DATE": "1939-06-29" }, "geometry": { "type": "Point", "coordinates": [ 2.12, 42.526667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66098004, "NOM_USUEL": "LA LLAGONNE", "LAT": 42.526667, "LON": 2.12, "ALTI": 1573, "MIN_DATE": "1901-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.12, 42.526667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66105001, "NOM_USUEL": "MATEMALE", "LAT": 42.588333, "LON": 2.118333, "ALTI": 1520, "MIN_DATE": "1945-06-01", "MAX_DATE": "1981-01-31" }, "geometry": { "type": "Point", "coordinates": [ 2.118333, 42.588333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66106001, "NOM_USUEL": "MAUREILLAS-LAS-ILLAS", "LAT": 42.49, "LON": 2.806667, "ALTI": 496, "MIN_DATE": "1901-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.806667, 42.49 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66106002, "NOM_USUEL": "MAUREILLAS-LAS-ILLAS-ECOLE", "LAT": 42.425, "LON": 2.785, "ALTI": 565, "MIN_DATE": "1947-07-01", "MAX_DATE": "1954-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.785, 42.425 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66107002, "NOM_USUEL": "MAURY AGGLOMERATION", "LAT": 42.811667, "LON": 2.593333, "ALTI": 168, "MIN_DATE": "1906-01-01", "MAX_DATE": "1929-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.593333, 42.811667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66108002, "NOM_USUEL": "MILLAS MAS DE LA SELVE", "LAT": 42.691667, "LON": 2.695, "ALTI": 95, "MIN_DATE": "1906-03-01", "MAX_DATE": "1914-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.695, 42.691667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66108003, "NOM_USUEL": "MILLAS GARE", "LAT": 42.691667, "LON": 2.695, "ALTI": 103, "MIN_DATE": "1901-01-01", "MAX_DATE": "1907-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.695, 42.691667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66113001, "NOM_USUEL": "MONTBOLO AGGLOMERATION", "LAT": 42.485, "LON": 2.653333, "ALTI": 500, "MIN_DATE": "1906-01-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.653333, 42.485 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66113002, "NOM_USUEL": "MONTBOLO COL DE LA REDOUTE", "LAT": 42.486667, "LON": 2.653333, "ALTI": 1170, "MIN_DATE": "1910-01-01", "MAX_DATE": "1912-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.653333, 42.486667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66117001, "NOM_USUEL": "MONT LOUIS", "LAT": 42.51, "LON": 2.121667, "ALTI": 1600, "MIN_DATE": "1928-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.121667, 42.51 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66117003, "NOM_USUEL": "MONT-LOUIS PONTS ET CHAUSSEES", "LAT": 42.508333, "LON": 2.12, "ALTI": 1615, "MIN_DATE": "1872-02-01", "MAX_DATE": "1933-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.12, 42.508333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66117004, "NOM_USUEL": "MONT-LOUIS SMMA", "LAT": 42.508333, "LON": 2.12, "ALTI": 1600, "MIN_DATE": "1946-04-01", "MAX_DATE": "1946-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.12, 42.508333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66117006, "NOM_USUEL": "MONT-LOUIS ECOLE", "LAT": 42.508333, "LON": 2.12, "ALTI": 1586, "MIN_DATE": "1901-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.12, 42.508333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66119002, "NOM_USUEL": "MOSSET", "LAT": 42.675667, "LON": 2.320333, "ALTI": 750, "MIN_DATE": "1924-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.320333, 42.675667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66119003, "NOM_USUEL": "MOSSET LE MOUNESTY", "LAT": 42.668333, "LON": 2.348333, "ALTI": 1132, "MIN_DATE": "1909-03-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.348333, 42.668333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66124001, "NOM_USUEL": "FONT ROMEU", "LAT": 42.503333, "LON": 2.04, "ALTI": 1754, "MIN_DATE": "1946-04-01", "MAX_DATE": "1983-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.04, 42.503333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66125001, "NOM_USUEL": "OLETTE MAISON FORESTIERE", "LAT": 42.556667, "LON": 2.266667, "ALTI": 1133, "MIN_DATE": "1901-01-01", "MAX_DATE": "1939-06-29" }, "geometry": { "type": "Point", "coordinates": [ 2.266667, 42.556667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66125002, "NOM_USUEL": "OLETTE GRASSOULS", "LAT": 42.556667, "LON": 2.266667, "ALTI": 920, "MIN_DATE": "1943-02-01", "MAX_DATE": "1944-07-30" }, "geometry": { "type": "Point", "coordinates": [ 2.266667, 42.556667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66127003, "NOM_USUEL": "OPOUL-PERILLOS", "LAT": 42.87, "LON": 2.871667, "ALTI": 352, "MIN_DATE": "1911-02-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.871667, 42.87 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66133001, "NOM_USUEL": "PALAU-DEL-VIDRE BOURG", "LAT": 42.571667, "LON": 2.96, "ALTI": 30, "MIN_DATE": "1912-01-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.96, 42.571667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66134001, "NOM_USUEL": "PASSA LLAURO", "LAT": 42.578333, "LON": 2.81, "ALTI": 330, "MIN_DATE": "1947-04-01", "MAX_DATE": "1982-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.81, 42.578333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66136001, "NOM_USUEL": "PERPIGNAN", "LAT": 42.737167, "LON": 2.872833, "ALTI": 42, "MIN_DATE": "1924-11-17", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.872833, 42.737167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66136002, "NOM_USUEL": "PERPIGNAN-JOFFRE", "LAT": 42.708333, "LON": 2.893333, "ALTI": 29, "MIN_DATE": "1877-01-01", "MAX_DATE": "2007-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.893333, 42.708333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66136003, "NOM_USUEL": "OBSERVATOIRE", "LAT": 42.701667, "LON": 2.885, "ALTI": 30, "MIN_DATE": "1882-01-01", "MAX_DATE": "1932-04-30" }, "geometry": { "type": "Point", "coordinates": [ 2.885, 42.701667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66136005, "NOM_USUEL": "PERPIGNAN-EN", "LAT": 42.696667, "LON": 2.9, "ALTI": 37, "MIN_DATE": "1850-01-01", "MAX_DATE": "1876-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.9, 42.696667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66136007, "NOM_USUEL": "PERPISTDO", "LAT": 42.701667, "LON": 2.898333, "ALTI": 36, "MIN_DATE": "1872-12-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.898333, 42.701667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66137001, "NOM_USUEL": "PERTHUS(LE)", "LAT": 42.466667, "LON": 2.865, "ALTI": 280, "MIN_DATE": "1906-01-01", "MAX_DATE": "1994-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.865, 42.466667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66137002, "NOM_USUEL": "LE PERTHUS FORT DE BELLEGARDE", "LAT": 42.465, "LON": 2.863333, "ALTI": 424, "MIN_DATE": "1901-01-01", "MAX_DATE": "1909-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.863333, 42.465 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66145001, "NOM_USUEL": "PONTEILLA", "LAT": 42.626667, "LON": 2.813333, "ALTI": 80, "MIN_DATE": "1944-05-01", "MAX_DATE": "1953-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.813333, 42.626667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66146001, "NOM_USUEL": "PORTA", "LAT": 42.525, "LON": 1.828333, "ALTI": 1975, "MIN_DATE": "1877-01-01", "MAX_DATE": "1939-06-29" }, "geometry": { "type": "Point", "coordinates": [ 1.828333, 42.525 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66147006, "NOM_USUEL": "PORTE-PUYMORENS BOURG", "LAT": 42.546667, "LON": 1.833333, "ALTI": 1610, "MIN_DATE": "1902-07-01", "MAX_DATE": "1907-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.833333, 42.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66148001, "NOM_USUEL": "CAP BEAR", "LAT": 42.516667, "LON": 3.135, "ALTI": 82, "MIN_DATE": "1901-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.135, 42.516667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66148002, "NOM_USUEL": "PORT-VENDRES", "LAT": 42.52, "LON": 3.105, "ALTI": 5, "MIN_DATE": "1902-01-01", "MAX_DATE": "1984-02-29" }, "geometry": { "type": "Point", "coordinates": [ 3.105, 42.52 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66148003, "NOM_USUEL": "PORT-VENDRES FEU BLANC", "LAT": 42.52, "LON": 3.105, "ALTI": 14, "MIN_DATE": "1872-02-01", "MAX_DATE": "1933-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.105, 42.52 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66148004, "NOM_USUEL": "PORT-VENDRES CAP BEAR - PHARE", "LAT": 42.52, "LON": 3.105, "ALTI": 51, "MIN_DATE": "1931-01-02", "MAX_DATE": "1939-06-29" }, "geometry": { "type": "Point", "coordinates": [ 3.105, 42.52 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66148006, "NOM_USUEL": "PORT-VENDRES CAP BEAR - PHARE", "LAT": 42.52, "LON": 3.105, "ALTI": 51, "MIN_DATE": "1901-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.105, 42.52 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66149001, "NOM_USUEL": "PRADES RUE DES LAURIERS", "LAT": 42.616667, "LON": 2.421667, "ALTI": 347, "MIN_DATE": "1871-12-01", "MAX_DATE": "1975-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.421667, 42.616667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66149002, "NOM_USUEL": "PRADES PONTS ET CHAUSSEES", "LAT": 42.618333, "LON": 2.421667, "ALTI": 352, "MIN_DATE": "1901-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.421667, 42.618333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66150001, "NOM_USUEL": "PRATS", "LAT": 42.405, "LON": 2.486667, "ALTI": 750, "MIN_DATE": "1871-12-01", "MAX_DATE": "1984-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.486667, 42.405 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66150002, "NOM_USUEL": "PRATS-MOLL", "LAT": 42.403333, "LON": 2.48, "ALTI": 1100, "MIN_DATE": "1946-09-02", "MAX_DATE": "1978-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.48, 42.403333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66150003, "NOM_USUEL": "PRATS-DE-MOLLO-LA-PRESTE", "LAT": 42.403333, "LON": 2.48, "ALTI": 850, "MIN_DATE": "1945-05-01", "MAX_DATE": "1974-05-15" }, "geometry": { "type": "Point", "coordinates": [ 2.48, 42.403333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66150009, "NOM_USUEL": "PRATS-DE-MOLLO-LA-PRESTE", "LAT": 42.403333, "LON": 2.48, "ALTI": 743, "MIN_DATE": "1901-01-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.48, 42.403333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66150010, "NOM_USUEL": "PRATS-DE-MOLLO-LA-PRESTE-BOIS", "LAT": 42.403333, "LON": 2.48, "ALTI": 1151, "MIN_DATE": "1908-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.48, 42.403333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66156001, "NOM_USUEL": "RABOUILLET FORET", "LAT": 42.731667, "LON": 2.39, "ALTI": 880, "MIN_DATE": "1906-07-01", "MAX_DATE": "1914-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.39, 42.731667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66164001, "NOM_USUEL": "RIVESALTES ECOLE D'AGRICOLE", "LAT": 42.77, "LON": 2.871667, "ALTI": 26, "MIN_DATE": "1945-01-01", "MAX_DATE": "1983-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.871667, 42.77 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66179002, "NOM_USUEL": "SAINT-LAURENT-DE-CERDANS FORET", "LAT": 42.385, "LON": 2.611667, "ALTI": 659, "MIN_DATE": "1910-01-01", "MAX_DATE": "1921-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.611667, 42.385 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66180002, "NOM_USUEL": "ST-LAURENT-DE-LA-SALANQUE-AGG", "LAT": 42.773333, "LON": 2.988333, "ALTI": 6, "MIN_DATE": "1901-01-01", "MAX_DATE": "1906-01-31" }, "geometry": { "type": "Point", "coordinates": [ 2.988333, 42.773333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66183001, "NOM_USUEL": "ST MARSAL", "LAT": 42.539167, "LON": 2.622, "ALTI": 690, "MIN_DATE": "1947-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.622, 42.539167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66183002, "NOM_USUEL": "SAINT-MARSAL EAUX ET FORETS", "LAT": 42.538333, "LON": 2.62, "ALTI": 738, "MIN_DATE": "1901-01-01", "MAX_DATE": "1923-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.62, 42.538333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66187003, "NOM_USUEL": "SAINT-PAUL-DE-FENOUILLET-AGG", "LAT": 42.81, "LON": 2.503333, "ALTI": 267, "MIN_DATE": "1901-01-01", "MAX_DATE": "1905-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.503333, 42.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66190001, "NOM_USUEL": "SALSES-LE-CHATEAU", "LAT": 42.833333, "LON": 2.92, "ALTI": 12, "MIN_DATE": "1901-01-01", "MAX_DATE": "1919-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.92, 42.833333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66193001, "NOM_USUEL": "SERDINYA RIVE GAUCHE", "LAT": 42.568333, "LON": 2.32, "ALTI": 1464, "MIN_DATE": "1901-01-01", "MAX_DATE": "1908-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.32, 42.568333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66193002, "NOM_USUEL": "SERDINYA RIVE DROITE", "LAT": 42.568333, "LON": 2.32, "ALTI": 715, "MIN_DATE": "1901-01-01", "MAX_DATE": "1918-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.32, 42.568333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66195002, "NOM_USUEL": "LE SOLER AGGLOMERATION", "LAT": 42.681667, "LON": 2.793333, "ALTI": 74, "MIN_DATE": "1901-01-01", "MAX_DATE": "1911-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.793333, 42.681667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66198001, "NOM_USUEL": "SOURNIA", "LAT": 42.726667, "LON": 2.446667, "ALTI": 515, "MIN_DATE": "1928-01-01", "MAX_DATE": "2010-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.446667, 42.726667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66198002, "NOM_USUEL": "SOURNIA FORETS", "LAT": 42.726667, "LON": 2.44, "ALTI": 881, "MIN_DATE": "1901-01-01", "MAX_DATE": "1917-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.44, 42.726667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66198003, "NOM_USUEL": "SOURNIA CMD", "LAT": 42.726667, "LON": 2.44, "ALTI": 513, "MIN_DATE": "1901-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.44, 42.726667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66204001, "NOM_USUEL": "TAURINYA AGGLOMERATION", "LAT": 42.58, "LON": 2.425, "ALTI": 1601, "MIN_DATE": "1901-01-01", "MAX_DATE": "1917-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.425, 42.58 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66209001, "NOM_USUEL": "THUES-ENTRE-VALLS", "LAT": 42.525, "LON": 2.223333, "ALTI": 1137, "MIN_DATE": "1901-01-01", "MAX_DATE": "1914-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.223333, 42.525 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66210001, "NOM_USUEL": "THUIR ECOLE", "LAT": 42.635, "LON": 2.753333, "ALTI": 100, "MIN_DATE": "1948-05-01", "MAX_DATE": "1948-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.753333, 42.635 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66210002, "NOM_USUEL": "THUIR AGGLOMERATION", "LAT": 42.635, "LON": 2.753333, "ALTI": 97, "MIN_DATE": "1901-01-01", "MAX_DATE": "1904-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.753333, 42.635 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66219001, "NOM_USUEL": "URBANYA BOURG", "LAT": 42.638333, "LON": 2.303333, "ALTI": 869, "MIN_DATE": "1911-01-01", "MAX_DATE": "1923-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.303333, 42.638333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66220002, "NOM_USUEL": "VALCEBOLLERE", "LAT": 42.388167, "LON": 2.035333, "ALTI": 1519, "MIN_DATE": "1945-06-15", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.035333, 42.388167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66221001, "NOM_USUEL": "VALMANYA", "LAT": 42.538333, "LON": 2.533333, "ALTI": 870, "MIN_DATE": "1933-08-01", "MAX_DATE": "1972-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.533333, 42.538333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66221002, "NOM_USUEL": "VALMANYA LOS MASOS", "LAT": 42.538333, "LON": 2.533333, "ALTI": 1000, "MIN_DATE": "1946-01-01", "MAX_DATE": "1946-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.533333, 42.538333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66221003, "NOM_USUEL": "VALMANYA AGGLOMERATION", "LAT": 42.538333, "LON": 2.533333, "ALTI": 1488, "MIN_DATE": "1901-01-01", "MAX_DATE": "1925-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.533333, 42.538333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66221004, "NOM_USUEL": "VALMANYA", "LAT": 42.538333, "LON": 2.533333, "ALTI": 1400, "MIN_DATE": "1928-01-01", "MAX_DATE": "1933-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.533333, 42.538333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66222002, "NOM_USUEL": "VERNET-LES-BAINS", "LAT": 42.546667, "LON": 2.386667, "ALTI": 650, "MIN_DATE": "1901-01-01", "MAX_DATE": "1923-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.386667, 42.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66223002, "NOM_USUEL": "VILLEFRANCHE-DE-CONFLENT", "LAT": 42.602333, "LON": 2.362, "ALTI": 895, "MIN_DATE": "1901-01-01", "MAX_DATE": "1917-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.362, 42.602333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66225001, "NOM_USUEL": "VILLELONGUE-DELS-MONTS", "LAT": 42.526667, "LON": 2.903333, "ALTI": 505, "MIN_DATE": "1902-01-01", "MAX_DATE": "1921-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.903333, 42.526667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66230002, "NOM_USUEL": "VINCA DISTILLERIE COOPERATIVE", "LAT": 42.645, "LON": 2.526667, "ALTI": 260, "MIN_DATE": "1948-06-01", "MAX_DATE": "1951-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.526667, 42.645 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66232001, "NOM_USUEL": "VIRA GASTEPA", "LAT": 42.771667, "LON": 2.413333, "ALTI": 1060, "MIN_DATE": "1901-01-01", "MAX_DATE": "1908-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.413333, 42.771667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66003001, "NOM_USUEL": "AMELIE-LES-BAINS", "LAT": 42.4775, "LON": 2.665167, "ALTI": 252, "MIN_DATE": "1977-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.665167, 42.4775 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66004401, "NOM_USUEL": "Les Angles", "LAT": 42.571667, "LON": 2.051667, "ALTI": 2108, "MIN_DATE": "1983-12-21", "MAX_DATE": "2024-03-15" }, "geometry": { "type": "Point", "coordinates": [ 2.051667, 42.571667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66008003, "NOM_USUEL": "ARGELES-SUR-MER", "LAT": 42.54, "LON": 3.006667, "ALTI": 28, "MIN_DATE": "1985-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.006667, 42.54 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66010001, "NOM_USUEL": "AYGUATEBIA-TALAU ECOLE", "LAT": 42.573333, "LON": 2.183333, "ALTI": 1365, "MIN_DATE": "1956-07-01", "MAX_DATE": "1957-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.183333, 42.573333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66013001, "NOM_USUEL": "BAILLESTAVY", "LAT": 42.563333, "LON": 2.528333, "ALTI": 585, "MIN_DATE": "1972-10-01", "MAX_DATE": "2019-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.528333, 42.563333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66016001, "NOM_USUEL": "BANYULS-SUR-MER", "LAT": 42.473333, "LON": 3.116667, "ALTI": 80, "MIN_DATE": "1957-05-01", "MAX_DATE": "2014-10-31" }, "geometry": { "type": "Point", "coordinates": [ 3.116667, 42.473333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66017001, "NOM_USUEL": "LE BARCARES", "LAT": 42.786667, "LON": 3.035, "ALTI": 2, "MIN_DATE": "1965-07-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.035, 42.786667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66017003, "NOM_USUEL": "BARCARES(LE)", "LAT": 42.798333, "LON": 3.036667, "ALTI": 3, "MIN_DATE": "1989-01-01", "MAX_DATE": "1999-09-30" }, "geometry": { "type": "Point", "coordinates": [ 3.036667, 42.798333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66018001, "NOM_USUEL": "BASTIDE(LA)", "LAT": 42.546667, "LON": 2.588333, "ALTI": 795, "MIN_DATE": "1966-06-01", "MAX_DATE": "1994-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.588333, 42.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66024001, "NOM_USUEL": "LE BOULOU", "LAT": 42.5285, "LON": 2.8435, "ALTI": 77, "MIN_DATE": "1962-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.8435, 42.5285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66026001, "NOM_USUEL": "BROUILLA", "LAT": 42.566667, "LON": 2.906667, "ALTI": 50, "MIN_DATE": "1962-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.906667, 42.566667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66029001, "NOM_USUEL": "CAIXAS CLIM", "LAT": 42.596667, "LON": 2.66, "ALTI": 450, "MIN_DATE": "1959-04-01", "MAX_DATE": "2017-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.66, 42.596667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66029003, "NOM_USUEL": "CAIXAS", "LAT": 42.587333, "LON": 2.679833, "ALTI": 347, "MIN_DATE": "2010-07-07", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.679833, 42.587333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66037001, "NOM_USUEL": "CANET-EN-ROUSSILLON", "LAT": 42.686833, "LON": 2.983667, "ALTI": 16, "MIN_DATE": "1956-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.983667, 42.686833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66038003, "NOM_USUEL": "CANOHES", "LAT": 42.653333, "LON": 2.831667, "ALTI": 73, "MIN_DATE": "1954-02-01", "MAX_DATE": "2016-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.831667, 42.653333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66039001, "NOM_USUEL": "CARAMANY", "LAT": 42.738333, "LON": 2.57, "ALTI": 190, "MIN_DATE": "1990-11-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.57, 42.738333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66052001, "NOM_USUEL": "CODALET", "LAT": 42.596667, "LON": 2.418333, "ALTI": 450, "MIN_DATE": "1969-05-01", "MAX_DATE": "2011-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.418333, 42.596667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66056001, "NOM_USUEL": "CORBERE-LES-CABANES", "LAT": 42.658333, "LON": 2.675, "ALTI": 180, "MIN_DATE": "1985-01-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.675, 42.658333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66060001, "NOM_USUEL": "MINESBAT", "LAT": 42.501667, "LON": 2.545, "ALTI": 1462, "MIN_DATE": "1958-07-01", "MAX_DATE": "1978-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.545, 42.501667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66060003, "NOM_USUEL": "CORSAVY", "LAT": 42.496667, "LON": 2.553333, "ALTI": 1160, "MIN_DATE": "1978-04-01", "MAX_DATE": "1995-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.553333, 42.496667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66060004, "NOM_USUEL": "CORSAVY", "LAT": 42.486667, "LON": 2.556667, "ALTI": 975, "MIN_DATE": "1995-06-01", "MAX_DATE": "2017-01-31" }, "geometry": { "type": "Point", "coordinates": [ 2.556667, 42.486667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66062001, "NOM_USUEL": "DORRES", "LAT": 42.4845, "LON": 1.939333, "ALTI": 1446, "MIN_DATE": "1966-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.939333, 42.4845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66067402, "NOM_USUEL": "PUIGMAL-NIVOSE", "LAT": 42.384667, "LON": 2.095333, "ALTI": 2471, "MIN_DATE": "2009-10-02", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.095333, 42.384667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66071001, "NOM_USUEL": "ESTAGEL RUE DE BELFORT", "LAT": 42.771667, "LON": 2.698333, "ALTI": 80, "MIN_DATE": "1958-04-01", "MAX_DATE": "1962-01-31" }, "geometry": { "type": "Point", "coordinates": [ 2.698333, 42.771667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66071002, "NOM_USUEL": "ESTAGEL ECOLE", "LAT": 42.771667, "LON": 2.698333, "ALTI": 182, "MIN_DATE": "1956-05-01", "MAX_DATE": "1957-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.698333, 42.771667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66074002, "NOM_USUEL": "EUS", "LAT": 42.630167, "LON": 2.446333, "ALTI": 321, "MIN_DATE": "1994-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.446333, 42.630167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66080001, "NOM_USUEL": "FONTPEDROUSE PRATS-BALAGUER", "LAT": 42.511667, "LON": 2.18, "ALTI": 1330, "MIN_DATE": "1952-03-01", "MAX_DATE": "1956-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.18, 42.511667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66082001, "NOM_USUEL": "FORMIGUERES", "LAT": 42.613333, "LON": 2.105, "ALTI": 1530, "MIN_DATE": "1983-01-01", "MAX_DATE": "2005-07-05" }, "geometry": { "type": "Point", "coordinates": [ 2.105, 42.613333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66082004, "NOM_USUEL": "FORMIGUERES", "LAT": 42.616, "LON": 2.111333, "ALTI": 1495, "MIN_DATE": "2005-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.111333, 42.616 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66082400, "NOM_USUEL": "FORMIGUERE", "LAT": 42.623667, "LON": 2.068333, "ALTI": 1753, "MIN_DATE": "1990-02-12", "MAX_DATE": "2024-03-08" }, "geometry": { "type": "Point", "coordinates": [ 2.068333, 42.623667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66085001, "NOM_USUEL": "FUILLA", "LAT": 42.561667, "LON": 2.36, "ALTI": 457, "MIN_DATE": "1968-01-01", "MAX_DATE": "1972-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.36, 42.561667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66088003, "NOM_USUEL": "ILLE-SUR-TET", "LAT": 42.659833, "LON": 2.614167, "ALTI": 158, "MIN_DATE": "2019-11-08", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.614167, 42.659833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66091001, "NOM_USUEL": "LAMANERE", "LAT": 42.361667, "LON": 2.52, "ALTI": 991, "MIN_DATE": "1981-12-01", "MAX_DATE": "1983-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.52, 42.361667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66094001, "NOM_USUEL": "LATOUR-BAS-ELNE MAS BLANC", "LAT": 42.606667, "LON": 3.001667, "ALTI": 4, "MIN_DATE": "1960-03-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.001667, 42.606667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66095001, "NOM_USUEL": "LATOUR DE CAROL", "LAT": 42.462333, "LON": 1.888167, "ALTI": 1246, "MIN_DATE": "1955-01-01", "MAX_DATE": "2015-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.888167, 42.462333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66107001, "NOM_USUEL": "MAURY RUE JEAN FLAMAND", "LAT": 42.811667, "LON": 2.593333, "ALTI": 167, "MIN_DATE": "1957-01-01", "MAX_DATE": "1982-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.593333, 42.811667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66108001, "NOM_USUEL": "MILLAS", "LAT": 42.69, "LON": 2.693333, "ALTI": 103, "MIN_DATE": "1956-01-01", "MAX_DATE": "1998-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.693333, 42.69 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66109001, "NOM_USUEL": "MOLITG-LES-BAINS LOU MANAT", "LAT": 42.651667, "LON": 2.386667, "ALTI": 650, "MIN_DATE": "1952-03-01", "MAX_DATE": "1955-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.386667, 42.651667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66112001, "NOM_USUEL": "MONTAURIOL", "LAT": 42.576667, "LON": 2.725, "ALTI": 200, "MIN_DATE": "1988-01-01", "MAX_DATE": "1996-04-30" }, "geometry": { "type": "Point", "coordinates": [ 2.725, 42.576667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66114001, "NOM_USUEL": "MONTESCOT ECOLE", "LAT": 42.608333, "LON": 2.933333, "ALTI": 13, "MIN_DATE": "1957-10-01", "MAX_DATE": "1962-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.933333, 42.608333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66116001, "NOM_USUEL": "MONTFERRER", "LAT": 42.438333, "LON": 2.566667, "ALTI": 371, "MIN_DATE": "1953-02-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.566667, 42.438333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66117002, "NOM_USUEL": "MONT-LOUIS FOUR SOLAIRE", "LAT": 42.508333, "LON": 2.12, "ALTI": 1620, "MIN_DATE": "1960-01-01", "MAX_DATE": "1966-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.12, 42.508333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66124004, "NOM_USUEL": "FONT-ROMEU", "LAT": 42.521667, "LON": 2.036667, "ALTI": 1964, "MIN_DATE": "1983-11-01", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.036667, 42.521667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66124402, "NOM_USUEL": "FONT-ROMEU-GALINERA", "LAT": 42.531833, "LON": 2.031833, "ALTI": 2124, "MIN_DATE": "2003-12-11", "MAX_DATE": "2023-03-04" }, "geometry": { "type": "Point", "coordinates": [ 2.031833, 42.531833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66125003, "NOM_USUEL": "OLETTE", "LAT": 42.553333, "LON": 2.266667, "ALTI": 615, "MIN_DATE": "1978-05-01", "MAX_DATE": "2009-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.266667, 42.553333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66127001, "NOM_USUEL": "OPOUL PERILLOS", "LAT": 42.866667, "LON": 2.876667, "ALTI": 180, "MIN_DATE": "1957-02-01", "MAX_DATE": "2017-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.876667, 42.866667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66130002, "NOM_USUEL": "OSSEJA", "LAT": 42.413333, "LON": 1.981667, "ALTI": 1240, "MIN_DATE": "1976-01-01", "MAX_DATE": "1991-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.981667, 42.413333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66137003, "NOM_USUEL": "LE PERTHUS", "LAT": 42.473333, "LON": 2.8595, "ALTI": 295, "MIN_DATE": "1989-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.8595, 42.473333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66147001, "NOM_USUEL": "PORTE PUYMORENS", "LAT": 42.546667, "LON": 1.826667, "ALTI": 1620, "MIN_DATE": "1964-05-01", "MAX_DATE": "2012-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.826667, 42.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66147004, "NOM_USUEL": "PORTE-PUYMORENS", "LAT": 42.546667, "LON": 1.831667, "ALTI": 1915, "MIN_DATE": "1958-06-01", "MAX_DATE": "1961-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.831667, 42.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66147005, "NOM_USUEL": "PORTE-PUYMORENS COL", "LAT": 42.546667, "LON": 1.831667, "ALTI": 1975, "MIN_DATE": "1955-08-01", "MAX_DATE": "1957-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.831667, 42.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66147402, "NOM_USUEL": "PORTE-PUYMORENS", "LAT": 42.551667, "LON": 1.789, "ALTI": 2087, "MIN_DATE": "2010-02-03", "MAX_DATE": "2024-03-28" }, "geometry": { "type": "Point", "coordinates": [ 1.789, 42.551667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66150004, "NOM_USUEL": "PRATS-DE-MOLLO", "LAT": 42.405, "LON": 2.485, "ALTI": 725, "MIN_DATE": "1980-03-01", "MAX_DATE": "2001-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.485, 42.405 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66150012, "NOM_USUEL": "COL D ARES", "LAT": 42.368333, "LON": 2.458333, "ALTI": 1525, "MIN_DATE": "1991-04-03", "MAX_DATE": "2005-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.458333, 42.368333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66154001, "NOM_USUEL": "PUYVALADOR", "LAT": 42.646667, "LON": 2.12, "ALTI": 1422, "MIN_DATE": "1952-03-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.12, 42.646667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66154401, "NOM_USUEL": "Puyvalador_Rieutord", "LAT": 42.655167, "LON": 2.058333, "ALTI": 2131, "MIN_DATE": "2004-01-11", "MAX_DATE": "2015-02-20" }, "geometry": { "type": "Point", "coordinates": [ 2.058333, 42.655167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66155001, "NOM_USUEL": "PY", "LAT": 42.496667, "LON": 2.351667, "ALTI": 1040, "MIN_DATE": "1957-10-01", "MAX_DATE": "2010-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.351667, 42.496667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66157001, "NOM_USUEL": "RAILLEU", "LAT": 42.586667, "LON": 2.181, "ALTI": 1366, "MIN_DATE": "1958-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.181, 42.586667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66159001, "NOM_USUEL": "REAL", "LAT": 42.631667, "LON": 2.133333, "ALTI": 1440, "MIN_DATE": "1969-09-01", "MAX_DATE": "1989-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.133333, 42.631667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66165001, "NOM_USUEL": "RODES MOULIN DE RODES", "LAT": 42.658333, "LON": 2.561667, "ALTI": 205, "MIN_DATE": "1952-01-01", "MAX_DATE": "1972-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.561667, 42.658333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66167001, "NOM_USUEL": "SAILLAGOUS", "LAT": 42.458333, "LON": 2.038333, "ALTI": 1305, "MIN_DATE": "1956-07-01", "MAX_DATE": "1980-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.038333, 42.458333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66179001, "NOM_USUEL": "ST LAURENT CERD", "LAT": 42.386667, "LON": 2.611667, "ALTI": 640, "MIN_DATE": "1965-01-01", "MAX_DATE": "2000-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.611667, 42.386667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66179003, "NOM_USUEL": "ST-LAURENT-DE-CERDANS", "LAT": 42.388333, "LON": 2.618333, "ALTI": 725, "MIN_DATE": "2001-04-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.618333, 42.388333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66180001, "NOM_USUEL": "ST-LAURENT-DE-LA-SALANQUE", "LAT": 42.773333, "LON": 2.988333, "ALTI": 6, "MIN_DATE": "1961-03-01", "MAX_DATE": "1981-01-31" }, "geometry": { "type": "Point", "coordinates": [ 2.988333, 42.773333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66181001, "NOM_USUEL": "STE LEOCADIE", "LAT": 42.445, "LON": 2.013333, "ALTI": 1320, "MIN_DATE": "1981-06-01", "MAX_DATE": "2017-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.013333, 42.445 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66187001, "NOM_USUEL": "ST P-FENOU-GEN", "LAT": 42.81, "LON": 2.506667, "ALTI": 262, "MIN_DATE": "1965-07-01", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.506667, 42.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66187004, "NOM_USUEL": "ST PAUL FENOUIL", "LAT": 42.808333, "LON": 2.558333, "ALTI": 205, "MIN_DATE": "1992-05-01", "MAX_DATE": "2005-07-12" }, "geometry": { "type": "Point", "coordinates": [ 2.558333, 42.808333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66187006, "NOM_USUEL": "ST PAUL DE FENOUILLET", "LAT": 42.8205, "LON": 2.485333, "ALTI": 300, "MIN_DATE": "2005-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.485333, 42.8205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66188401, "NOM_USUEL": "ST PIERRE DELS FORCATS", "LAT": 42.4625, "LON": 2.117, "ALTI": 2350, "MIN_DATE": "2007-12-16", "MAX_DATE": "2024-03-19" }, "geometry": { "type": "Point", "coordinates": [ 2.117, 42.4625 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66192001, "NOM_USUEL": "SAUTO", "LAT": 42.511667, "LON": 2.151667, "ALTI": 1200, "MIN_DATE": "1959-06-24", "MAX_DATE": "1978-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.151667, 42.511667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66192003, "NOM_USUEL": "LA CASSAGNE- S H E M", "LAT": 42.509167, "LON": 2.148667, "ALTI": 1151, "MIN_DATE": "2009-11-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.148667, 42.509167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66194002, "NOM_USUEL": "SERRALONGUE", "LAT": 42.399833, "LON": 2.557833, "ALTI": 700, "MIN_DATE": "1985-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.557833, 42.399833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66195001, "NOM_USUEL": "LE SOLER LOTISSEMENT MAZARD", "LAT": 42.681667, "LON": 2.793333, "ALTI": 73, "MIN_DATE": "1962-04-01", "MAX_DATE": "1987-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.793333, 42.681667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66202001, "NOM_USUEL": "TARGASONNE", "LAT": 42.504, "LON": 1.973333, "ALTI": 1600, "MIN_DATE": "2017-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.973333, 42.504 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66203001, "NOM_USUEL": "TAULIS", "LAT": 42.523333, "LON": 2.633333, "ALTI": 570, "MIN_DATE": "1966-01-01", "MAX_DATE": "1994-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.633333, 42.523333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66204002, "NOM_USUEL": "TAURINYA", "LAT": 42.580333, "LON": 2.4105, "ALTI": 770, "MIN_DATE": "2012-06-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.4105, 42.580333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66204400, "NOM_USUEL": "CANIGOU-NIVOSE", "LAT": 42.536667, "LON": 2.465, "ALTI": 2160, "MIN_DATE": "1996-07-24", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.465, 42.536667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66206001, "NOM_USUEL": "LE TECH-EDF", "LAT": 42.408667, "LON": 2.541, "ALTI": 532, "MIN_DATE": "1952-03-01", "MAX_DATE": "2019-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.541, 42.408667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66206002, "NOM_USUEL": "LE TECH-LA LLAU", "LAT": 42.44, "LON": 2.515, "ALTI": 900, "MIN_DATE": "1953-03-01", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.515, 42.44 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66206003, "NOM_USUEL": "LEVENTOUS", "LAT": 42.441667, "LON": 2.521667, "ALTI": 1160, "MIN_DATE": "1987-06-01", "MAX_DATE": "1992-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.521667, 42.441667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66206004, "NOM_USUEL": "LE TECH LA LLAU_SAPC", "LAT": 42.439833, "LON": 2.5125, "ALTI": 927, "MIN_DATE": "2007-07-03", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.5125, 42.439833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66210003, "NOM_USUEL": "THUIR", "LAT": 42.648333, "LON": 2.731667, "ALTI": 110, "MIN_DATE": "1993-10-01", "MAX_DATE": "2010-06-07" }, "geometry": { "type": "Point", "coordinates": [ 2.731667, 42.648333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66212001, "NOM_USUEL": "TORREILLES", "LAT": 42.755, "LON": 2.978333, "ALTI": 7, "MIN_DATE": "1981-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.978333, 42.755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66214001, "NOM_USUEL": "TRESSERRE", "LAT": 42.545, "LON": 2.826667, "ALTI": 148, "MIN_DATE": "1983-11-01", "MAX_DATE": "2014-06-04" }, "geometry": { "type": "Point", "coordinates": [ 2.826667, 42.545 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66222001, "NOM_USUEL": "VERNET LES BAIN", "LAT": 42.551667, "LON": 2.386667, "ALTI": 640, "MIN_DATE": "1967-01-01", "MAX_DATE": "1994-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.386667, 42.551667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66222003, "NOM_USUEL": "VERNET LES BAINS", "LAT": 42.548333, "LON": 2.386667, "ALTI": 630, "MIN_DATE": "1992-04-01", "MAX_DATE": "2012-10-01" }, "geometry": { "type": "Point", "coordinates": [ 2.386667, 42.548333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66223001, "NOM_USUEL": "VILLEFRANCHE-DE-CONFLENT EDF", "LAT": 42.585, "LON": 2.365, "ALTI": 457, "MIN_DATE": "1952-03-01", "MAX_DATE": "1967-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.365, 42.585 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66230001, "NOM_USUEL": "VINCA", "LAT": 42.6555, "LON": 2.547833, "ALTI": 251, "MIN_DATE": "1973-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.547833, 42.6555 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 66233001, "NOM_USUEL": "VIVES", "LAT": 42.5365, "LON": 2.760833, "ALTI": 261, "MIN_DATE": "1998-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.760833, 42.5365 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24018001, "NOM_USUEL": "AURIAC-DU-PERIGORD", "LAT": 45.105, "LON": 1.136667, "ALTI": 90, "MIN_DATE": "1907-10-01", "MAX_DATE": "1908-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.136667, 45.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24026002, "NOM_USUEL": "BASSILLAC AGGLOMERATION", "LAT": 45.19, "LON": 0.813333, "ALTI": 95, "MIN_DATE": "1937-08-01", "MAX_DATE": "1939-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.813333, 45.19 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24030001, "NOM_USUEL": "BEAUREGARD-DE-TERRASSON MELLET", "LAT": 45.146667, "LON": 1.231667, "ALTI": 236, "MIN_DATE": "1929-11-01", "MAX_DATE": "1937-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.231667, 45.146667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24034001, "NOM_USUEL": "BELEYMAS", "LAT": 44.993333, "LON": 0.503333, "ALTI": 100, "MIN_DATE": "1948-04-14", "MAX_DATE": "1949-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.503333, 44.993333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24035002, "NOM_USUEL": "BELVES ECOLE", "LAT": 44.775, "LON": 1.003333, "ALTI": 165, "MIN_DATE": "1929-11-01", "MAX_DATE": "1935-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.003333, 44.775 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24037001, "NOM_USUEL": "BERGERAC TABAC", "LAT": 44.85, "LON": 0.523333, "ALTI": 33, "MIN_DATE": "1903-04-01", "MAX_DATE": "2012-06-19" }, "geometry": { "type": "Point", "coordinates": [ 0.523333, 44.85 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24037003, "NOM_USUEL": "BERGERAC PETIT SEMINAIRE", "LAT": 44.851667, "LON": 0.483333, "ALTI": 33, "MIN_DATE": "1921-01-01", "MAX_DATE": "1944-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.483333, 44.851667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24037004, "NOM_USUEL": "BERGERAC SMMA", "LAT": 44.851667, "LON": 0.483333, "ALTI": 39, "MIN_DATE": "1946-01-01", "MAX_DATE": "1946-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.483333, 44.851667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24042001, "NOM_USUEL": "BIRAS LA COTE", "LAT": 45.286667, "LON": 0.635, "ALTI": 125, "MIN_DATE": "1893-01-01", "MAX_DATE": "1924-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.635, 45.286667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24055001, "NOM_USUEL": "BOURDEILLES LAVALLADE", "LAT": 45.318333, "LON": 0.585, "ALTI": 140, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.585, 45.318333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24067002, "NOM_USUEL": "LE BUGUE LA BOISSIERE", "LAT": 44.92, "LON": 0.928333, "ALTI": 80, "MIN_DATE": "1907-09-01", "MAX_DATE": "1926-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.928333, 44.92 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24068002, "NOM_USUEL": "LE BUISSON-DE-CADOUIN", "LAT": 44.846667, "LON": 0.908333, "ALTI": 130, "MIN_DATE": "1908-01-01", "MAX_DATE": "1913-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.908333, 44.846667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24075001, "NOM_USUEL": "CAMPAGNAC-LES-QUERCY RAMONET", "LAT": 44.693333, "LON": 1.171667, "ALTI": 450, "MIN_DATE": "1920-01-01", "MAX_DATE": "1926-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.171667, 44.693333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24082001, "NOM_USUEL": "CARSAC-AILLAC AGGLOMERATION", "LAT": 44.841667, "LON": 1.27, "ALTI": 340, "MIN_DATE": "1907-09-01", "MAX_DATE": "1909-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.27, 44.841667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24140001, "NOM_USUEL": "COURS-DE-PILE ECOLE", "LAT": 44.84, "LON": 0.545, "ALTI": 45, "MIN_DATE": "1933-04-01", "MAX_DATE": "1950-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.545, 44.84 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24191001, "NOM_USUEL": "FRAISSE AGGLOMERATION", "LAT": 44.928333, "LON": 0.306667, "ALTI": 100, "MIN_DATE": "1918-05-01", "MAX_DATE": "1919-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.306667, 44.928333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24202001, "NOM_USUEL": "GRANGES D'ANS", "LAT": 45.211667, "LON": 1.118333, "ALTI": 284, "MIN_DATE": "1929-11-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.118333, 45.211667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24211001, "NOM_USUEL": "ISSAC", "LAT": 45.013333, "LON": 0.448333, "ALTI": 79, "MIN_DATE": "1933-10-01", "MAX_DATE": "1960-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.448333, 45.013333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24212002, "NOM_USUEL": "ISSIGEAC BOURG", "LAT": 44.728333, "LON": 0.605, "ALTI": 100, "MIN_DATE": "1933-04-04", "MAX_DATE": "1935-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.605, 44.728333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24222001, "NOM_USUEL": "LA FORCE AGGLOMERATION", "LAT": 44.866667, "LON": 0.373333, "ALTI": 62, "MIN_DATE": "1918-05-01", "MAX_DATE": "1920-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.373333, 44.866667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24227001, "NOM_USUEL": "LANOUAILLE PONTS-ET-CHAUSSEES", "LAT": 45.39, "LON": 1.138333, "ALTI": 290, "MIN_DATE": "1930-01-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.138333, 45.39 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24249001, "NOM_USUEL": "MANAURIE ECOLE", "LAT": 44.958333, "LON": 0.991667, "ALTI": 85, "MIN_DATE": "1911-02-01", "MAX_DATE": "1923-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.991667, 44.958333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24253002, "NOM_USUEL": "MAREUIL ECOLE", "LAT": 45.448333, "LON": 0.451667, "ALTI": 120, "MIN_DATE": "1929-11-01", "MAX_DATE": "1934-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.451667, 45.448333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24264001, "NOM_USUEL": "MENESPLET PAR LALANDE", "LAT": 45.018333, "LON": 0.108333, "ALTI": 40, "MIN_DATE": "1928-09-01", "MAX_DATE": "1934-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.108333, 45.018333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24291003, "NOM_USUEL": "MONTIGNAC AGGLOMERATION", "LAT": 45.065, "LON": 1.16, "ALTI": 70, "MIN_DATE": "1913-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.16, 45.065 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24294001, "NOM_USUEL": "MONTPON-MENESTEROL", "LAT": 45.008333, "LON": 0.16, "ALTI": 93, "MIN_DATE": "1910-09-01", "MAX_DATE": "1914-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.16, 45.008333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24296001, "NOM_USUEL": "MOULEYDIER SIREYGEOL", "LAT": 44.855, "LON": 0.596667, "ALTI": 36, "MIN_DATE": "1924-02-01", "MAX_DATE": "1925-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.596667, 44.855 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24309001, "NOM_USUEL": "NEUVIC AGGLOMERATION", "LAT": 45.1, "LON": 0.468333, "ALTI": 68, "MIN_DATE": "1910-07-01", "MAX_DATE": "1914-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.468333, 45.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24311002, "NOM_USUEL": "NONTRON-ECOLE", "LAT": 45.53, "LON": 0.663333, "ALTI": 306, "MIN_DATE": "1894-08-01", "MAX_DATE": "1939-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.663333, 45.53 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24321001, "NOM_USUEL": "PAZAYAC AGGLOMERATION", "LAT": 45.121667, "LON": 1.378333, "ALTI": 99, "MIN_DATE": "1875-01-01", "MAX_DATE": "1920-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.378333, 45.121667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24322001, "NOM_USUEL": "PERIGUEUX", "LAT": 45.185, "LON": 0.72, "ALTI": 80, "MIN_DATE": "1872-02-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.72, 45.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24322002, "NOM_USUEL": "PERIGUEUX MAGASINS DES TABACS", "LAT": 45.185, "LON": 0.72, "ALTI": 86, "MIN_DATE": "1944-01-01", "MAX_DATE": "1948-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.72, 45.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24322003, "NOM_USUEL": "PERIGUEUX PHARMACIEN", "LAT": 45.185, "LON": 0.72, "ALTI": 106, "MIN_DATE": "1908-05-01", "MAX_DATE": "1914-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.72, 45.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24328002, "NOM_USUEL": "PIEGUT-PLUVIERS BOURG", "LAT": 45.621667, "LON": 0.69, "ALTI": 285, "MIN_DATE": "1910-09-01", "MAX_DATE": "1921-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.69, 45.621667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24352001, "NOM_USUEL": "RIBERAC ECOLE", "LAT": 45.246667, "LON": 0.338333, "ALTI": 68, "MIN_DATE": "1929-11-01", "MAX_DATE": "1937-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.338333, 45.246667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24352002, "NOM_USUEL": "RIBERAC BOURG", "LAT": 45.246667, "LON": 0.338333, "ALTI": 65, "MIN_DATE": "1933-09-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.338333, 45.246667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24372002, "NOM_USUEL": "SAINT-ASTIER AGGLOMERATION", "LAT": 45.145, "LON": 0.526667, "ALTI": 90, "MIN_DATE": "1912-01-01", "MAX_DATE": "1915-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.526667, 45.145 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24392001, "NOM_USUEL": "ST CREPIN", "LAT": 44.958333, "LON": 1.276667, "ALTI": 270, "MIN_DATE": "1908-01-01", "MAX_DATE": "1914-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.276667, 44.958333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24395001, "NOM_USUEL": "SAINT-CYBRANET", "LAT": 44.786667, "LON": 1.168333, "ALTI": 76, "MIN_DATE": "1931-04-01", "MAX_DATE": "1932-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.168333, 44.786667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24424001, "NOM_USUEL": "SAINT-JEAN-D'ATAUX", "LAT": 45.141667, "LON": 0.408333, "ALTI": 102, "MIN_DATE": "1880-04-01", "MAX_DATE": "1900-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.408333, 45.141667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24449001, "NOM_USUEL": "ST MARTIAL D'AR", "LAT": 45.016667, "LON": 0.203333, "ALTI": 28, "MIN_DATE": "1919-07-01", "MAX_DATE": "1974-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.203333, 45.016667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24466001, "NOM_USUEL": "ST MICHEL DE MO", "LAT": 44.873333, "LON": 0.031667, "ALTI": 70, "MIN_DATE": "1949-10-01", "MAX_DATE": "1954-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.031667, 44.873333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24498004, "NOM_USUEL": "SAINT-SAUD-LACOUSSIERE", "LAT": 45.543333, "LON": 0.82, "ALTI": 330, "MIN_DATE": "1916-06-01", "MAX_DATE": "1919-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.82, 45.543333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24515001, "NOM_USUEL": "SALAGNAC", "LAT": 45.311667, "LON": 1.2, "ALTI": 327, "MIN_DATE": "1937-05-08", "MAX_DATE": "1973-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.2, 45.311667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24520004, "NOM_USUEL": "SARLAT-LA-CANEDA ECOLE", "LAT": 44.886667, "LON": 1.215, "ALTI": 224, "MIN_DATE": "1930-02-01", "MAX_DATE": "1937-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.215, 44.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24543001, "NOM_USUEL": "SOURZAC PRESBYTERE", "LAT": 45.05, "LON": 0.396667, "ALTI": 48, "MIN_DATE": "1931-11-01", "MAX_DATE": "1938-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.396667, 45.05 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24544001, "NOM_USUEL": "TAMNIES AGGLOMERATION", "LAT": 44.965, "LON": 1.148333, "ALTI": 200, "MIN_DATE": "1912-12-01", "MAX_DATE": "1914-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.148333, 44.965 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24550002, "NOM_USUEL": "THENON BOURG", "LAT": 45.136667, "LON": 1.07, "ALTI": 270, "MIN_DATE": "1910-09-01", "MAX_DATE": "1932-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.07, 45.136667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24551001, "NOM_USUEL": "THIVIERS ECOLE", "LAT": 45.413333, "LON": 0.918333, "ALTI": 253, "MIN_DATE": "1929-12-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.918333, 45.413333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24568001, "NOM_USUEL": "VELINES AGGLOMERATION", "LAT": 44.858333, "LON": 0.106667, "ALTI": 85, "MIN_DATE": "1910-09-01", "MAX_DATE": "1914-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.106667, 44.858333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24011001, "NOM_USUEL": "ANTONNE", "LAT": 45.211667, "LON": 0.833333, "ALTI": 183, "MIN_DATE": "1951-02-01", "MAX_DATE": "1963-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.833333, 45.211667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24026001, "NOM_USUEL": "BASSILLAC", "LAT": 45.195, "LON": 0.816667, "ALTI": 95, "MIN_DATE": "1969-04-01", "MAX_DATE": "2006-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.816667, 45.195 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24028001, "NOM_USUEL": "BEAUMONT", "LAT": 44.7645, "LON": 0.767167, "ALTI": 140, "MIN_DATE": "1970-07-01", "MAX_DATE": "2017-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.767167, 44.7645 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24035001, "NOM_USUEL": "BELVES", "LAT": 44.773333, "LON": 1.008333, "ALTI": 90, "MIN_DATE": "1956-04-01", "MAX_DATE": "2008-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.008333, 44.773333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24035003, "NOM_USUEL": "BELVES", "LAT": 44.782667, "LON": 0.956, "ALTI": 238, "MIN_DATE": "1988-04-30", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.956, 44.782667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24037002, "NOM_USUEL": "BERGERAC", "LAT": 44.851667, "LON": 0.483333, "ALTI": 51, "MIN_DATE": "1972-03-01", "MAX_DATE": "1978-02-17" }, "geometry": { "type": "Point", "coordinates": [ 0.483333, 44.851667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24037005, "NOM_USUEL": "BERGERAC", "LAT": 44.822833, "LON": 0.524167, "ALTI": 49, "MIN_DATE": "1988-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.524167, 44.822833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24050001, "NOM_USUEL": "BORREZE SA", "LAT": 44.968333, "LON": 1.416667, "ALTI": 335, "MIN_DATE": "1988-04-23", "MAX_DATE": "2004-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.416667, 44.968333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24064001, "NOM_USUEL": "BRANTOME", "LAT": 45.356833, "LON": 0.645833, "ALTI": 129, "MIN_DATE": "1965-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.645833, 45.356833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24067001, "NOM_USUEL": "LE BUGUE FONTENILLE", "LAT": 44.92, "LON": 0.928333, "ALTI": 62, "MIN_DATE": "1956-04-01", "MAX_DATE": "1970-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.928333, 44.92 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24068001, "NOM_USUEL": "LE BUISSON CADO", "LAT": 44.8445, "LON": 0.91, "ALTI": 69, "MIN_DATE": "1969-12-01", "MAX_DATE": "2015-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.91, 44.8445 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24071001, "NOM_USUEL": "BUSSIERE-BADIL HAUT PINLOT", "LAT": 45.651667, "LON": 0.603333, "ALTI": 261, "MIN_DATE": "1962-06-01", "MAX_DATE": "1965-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.603333, 45.651667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24076001, "NOM_USUEL": "CAMPAGNE", "LAT": 44.892667, "LON": 0.956167, "ALTI": 189, "MIN_DATE": "2003-05-01", "MAX_DATE": "2003-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.956167, 44.892667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24081001, "NOM_USUEL": "CARLUX", "LAT": 44.889833, "LON": 1.361, "ALTI": 207, "MIN_DATE": "1970-07-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.361, 44.889833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24133001, "NOM_USUEL": "COQUILLE", "LAT": 45.533333, "LON": 0.976667, "ALTI": 280, "MIN_DATE": "1976-05-01", "MAX_DATE": "1982-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.976667, 45.533333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24133002, "NOM_USUEL": "LA COQUILLE", "LAT": 45.5445, "LON": 0.982167, "ALTI": 324, "MIN_DATE": "1982-06-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.982167, 45.5445 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24137001, "NOM_USUEL": "COULAURES PETITE GARE", "LAT": 45.305, "LON": 0.983333, "ALTI": 100, "MIN_DATE": "1961-11-01", "MAX_DATE": "1966-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.983333, 45.305 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24138001, "NOM_USUEL": "COULOUNIEIX", "LAT": 45.176667, "LON": 0.7, "ALTI": 205, "MIN_DATE": "1960-10-01", "MAX_DATE": "1994-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.7, 45.176667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24138002, "NOM_USUEL": "COULOUNIEIX SA", "LAT": 45.176667, "LON": 0.7, "ALTI": 205, "MIN_DATE": "1988-04-04", "MAX_DATE": "2004-11-23" }, "geometry": { "type": "Point", "coordinates": [ 0.7, 45.176667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24138004, "NOM_USUEL": "COULOUNIEIX", "LAT": 45.1595, "LON": 0.676667, "ALTI": 217, "MIN_DATE": "2004-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.676667, 45.1595 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24152001, "NOM_USUEL": "DOMME", "LAT": 44.798333, "LON": 1.219667, "ALTI": 165, "MIN_DATE": "1969-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.219667, 44.798333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24158001, "NOM_USUEL": "DUSSAC", "LAT": 45.411667, "LON": 1.071667, "ALTI": 320, "MIN_DATE": "1988-04-22", "MAX_DATE": "2006-05-21" }, "geometry": { "type": "Point", "coordinates": [ 1.071667, 45.411667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24167001, "NOM_USUEL": "EYMET", "LAT": 44.667833, "LON": 0.405, "ALTI": 65, "MIN_DATE": "1980-04-01", "MAX_DATE": "2007-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.405, 44.667833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24172001, "NOM_USUEL": "LES EYZIES DE TAYAC", "LAT": 44.935167, "LON": 1.0195, "ALTI": 73, "MIN_DATE": "1967-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.0195, 44.935167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24210001, "NOM_USUEL": "HAUTEFORT PONTS-ET-CHAUSSEES", "LAT": 45.258333, "LON": 1.15, "ALTI": 232, "MIN_DATE": "1970-09-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.15, 45.258333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24212001, "NOM_USUEL": "ISSIGEAC", "LAT": 44.732833, "LON": 0.607667, "ALTI": 106, "MIN_DATE": "1965-09-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.607667, 44.732833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24218001, "NOM_USUEL": "JUMILHAC-LE-GRAND BOURG", "LAT": 45.495, "LON": 1.063333, "ALTI": 274, "MIN_DATE": "1970-09-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.063333, 45.495 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24223001, "NOM_USUEL": "LALINDE", "LAT": 44.839167, "LON": 0.738667, "ALTI": 40, "MIN_DATE": "1965-08-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.738667, 44.839167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24226001, "NOM_USUEL": "LAMOTHE MONTRAV", "LAT": 44.837333, "LON": 0.041167, "ALTI": 9, "MIN_DATE": "1961-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.041167, 44.837333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24244001, "NOM_USUEL": "LOLME", "LAT": 44.706667, "LON": 0.831667, "ALTI": 205, "MIN_DATE": "1981-10-01", "MAX_DATE": "2005-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.831667, 44.706667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24253001, "NOM_USUEL": "MAREUIL", "LAT": 45.447333, "LON": 0.447833, "ALTI": 126, "MIN_DATE": "1969-12-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.447833, 45.447333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24272001, "NOM_USUEL": "MINZAC", "LAT": 44.971667, "LON": 0.04, "ALTI": 65, "MIN_DATE": "1950-05-01", "MAX_DATE": "1978-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.04, 44.971667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24280001, "NOM_USUEL": "MONPAZIER", "LAT": 44.684, "LON": 0.891667, "ALTI": 199, "MIN_DATE": "1965-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.891667, 44.684 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24285001, "NOM_USUEL": "MONTAGNAC-LA-CREMPSE GARDONNE", "LAT": 44.981667, "LON": 0.545, "ALTI": 135, "MIN_DATE": "1961-01-01", "MAX_DATE": "1961-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.545, 44.981667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24291001, "NOM_USUEL": "MONTIGNAC", "LAT": 45.052167, "LON": 1.147333, "ALTI": 77, "MIN_DATE": "1956-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.147333, 45.052167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24294002, "NOM_USUEL": "MONTPON", "LAT": 45.038333, "LON": 0.176667, "ALTI": 79, "MIN_DATE": "1969-11-01", "MAX_DATE": "2006-03-10" }, "geometry": { "type": "Point", "coordinates": [ 0.176667, 45.038333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24294003, "NOM_USUEL": "MONTPON-MENESTEROL", "LAT": 45.025667, "LON": 0.126333, "ALTI": 29, "MIN_DATE": "2015-09-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.126333, 45.025667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24299001, "NOM_USUEL": "MUSSIDAN", "LAT": 45.033167, "LON": 0.368333, "ALTI": 47, "MIN_DATE": "1951-02-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.368333, 45.033167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24311001, "NOM_USUEL": "NONTRON MAN", "LAT": 45.5475, "LON": 0.674333, "ALTI": 262, "MIN_DATE": "1959-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.674333, 45.5475 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24311003, "NOM_USUEL": "NONTRON-HOPITAL", "LAT": 45.527333, "LON": 0.666333, "ALTI": 202, "MIN_DATE": "1982-06-01", "MAX_DATE": "2015-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.666333, 45.527333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24328001, "NOM_USUEL": "PIEGUT PLUVIERS", "LAT": 45.620333, "LON": 0.697667, "ALTI": 273, "MIN_DATE": "1969-11-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.697667, 45.620333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24335001, "NOM_USUEL": "PORT STE FOY", "LAT": 44.85, "LON": 0.185667, "ALTI": 28, "MIN_DATE": "1954-12-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.185667, 44.85 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24336001, "NOM_USUEL": "PRATS DE CARLUX", "LAT": 44.896667, "LON": 1.321667, "ALTI": 220, "MIN_DATE": "1979-01-01", "MAX_DATE": "2008-10-31" }, "geometry": { "type": "Point", "coordinates": [ 1.321667, 44.896667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24362001, "NOM_USUEL": "STE ALVERE", "LAT": 44.947, "LON": 0.809833, "ALTI": 167, "MIN_DATE": "1969-12-01", "MAX_DATE": "2015-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.809833, 44.947 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24372001, "NOM_USUEL": "ST ASTIER", "LAT": 45.136833, "LON": 0.516833, "ALTI": 77, "MIN_DATE": "1965-08-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.516833, 45.136833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24376001, "NOM_USUEL": "ST AULAYE", "LAT": 45.197833, "LON": 0.155333, "ALTI": 64, "MIN_DATE": "1963-10-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.155333, 45.197833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24437001, "NOM_USUEL": "ST LAURENT VIGN", "LAT": 44.840833, "LON": 0.419, "ALTI": 27, "MIN_DATE": "1962-01-01", "MAX_DATE": "2011-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.419, 44.840833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24452001, "NOM_USUEL": "ST MARTIAL VIVEYROLS", "LAT": 45.357833, "LON": 0.319333, "ALTI": 166, "MIN_DATE": "1988-04-04", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.319333, 45.357833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24453001, "NOM_USUEL": "ST MARTIN DE FRESSENGEAS", "LAT": 45.4755, "LON": 0.848333, "ALTI": 277, "MIN_DATE": "2006-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.848333, 45.4755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24455001, "NOM_USUEL": "ST MARTIN RIB.", "LAT": 45.234, "LON": 0.372, "ALTI": 142, "MIN_DATE": "1993-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.372, 45.234 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24484001, "NOM_USUEL": "SAINT-PIERRE-DE-CHIGNAC BOURG", "LAT": 45.12, "LON": 0.853333, "ALTI": 130, "MIN_DATE": "1970-09-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.853333, 45.12 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24486001, "NOM_USUEL": "SAINT-PIERRE-DE-FRUGIE BOURG", "LAT": 45.573333, "LON": 0.998333, "ALTI": 378, "MIN_DATE": "1970-12-01", "MAX_DATE": "1971-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.998333, 45.573333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24490001, "NOM_USUEL": "SAINT-PRIVAT-DES-PRES", "LAT": 45.225, "LON": 0.213333, "ALTI": 120, "MIN_DATE": "1962-08-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.213333, 45.225 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24498001, "NOM_USUEL": "ST SAUD-MANUEL", "LAT": 45.5645, "LON": 0.832833, "ALTI": 330, "MIN_DATE": "1958-08-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.832833, 45.5645 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24498003, "NOM_USUEL": "ST SAUD", "LAT": 45.5645, "LON": 0.832667, "ALTI": 335, "MIN_DATE": "1987-10-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.832667, 45.5645 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24516001, "NOM_USUEL": "SALIGNAC EYVIGU", "LAT": 44.975, "LON": 1.32, "ALTI": 293, "MIN_DATE": "1965-08-01", "MAX_DATE": "2011-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.32, 44.975 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24516002, "NOM_USUEL": "SALIGNAC-EYVIGUES", "LAT": 44.936667, "LON": 1.364667, "ALTI": 276, "MIN_DATE": "2004-09-23", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.364667, 44.936667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24520001, "NOM_USUEL": "SARLAT-LA-CANEDA LA FAURIE", "LAT": 44.886667, "LON": 1.215, "ALTI": 250, "MIN_DATE": "1968-12-01", "MAX_DATE": "1974-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.215, 44.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24520002, "NOM_USUEL": "SARLAT-LA-CANEDA", "LAT": 44.886667, "LON": 1.215, "ALTI": 160, "MIN_DATE": "1956-04-01", "MAX_DATE": "1965-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.215, 44.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24520005, "NOM_USUEL": "SARLAT", "LAT": 44.898667, "LON": 1.225833, "ALTI": 203, "MIN_DATE": "1995-12-01", "MAX_DATE": "2014-01-05" }, "geometry": { "type": "Point", "coordinates": [ 1.225833, 44.898667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24522001, "NOM_USUEL": "SARRAZAC", "LAT": 45.440333, "LON": 1.011167, "ALTI": 305, "MIN_DATE": "1978-09-14", "MAX_DATE": "2017-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.011167, 45.440333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24527001, "NOM_USUEL": "SAVIGNAC-LES-EGLISES BOURG", "LAT": 45.273333, "LON": 0.915, "ALTI": 111, "MIN_DATE": "1970-09-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.915, 45.273333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24530001, "NOM_USUEL": "SENCENAC", "LAT": 45.327167, "LON": 0.6945, "ALTI": 180, "MIN_DATE": "1980-01-01", "MAX_DATE": "1999-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.6945, 45.327167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24532001, "NOM_USUEL": "SERRES ET MONTG", "LAT": 44.682167, "LON": 0.428667, "ALTI": 75, "MIN_DATE": "1970-06-01", "MAX_DATE": "2004-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.428667, 44.682167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24547002, "NOM_USUEL": "TERRASSON-LAVILLEDIEU", "LAT": 45.1355, "LON": 1.2925, "ALTI": 90, "MIN_DATE": "1961-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.2925, 45.1355 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24550001, "NOM_USUEL": "THENON-MAN", "LAT": 45.141, "LON": 1.07, "ALTI": 270, "MIN_DATE": "1969-12-01", "MAX_DATE": "2009-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.07, 45.141 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24550003, "NOM_USUEL": "THENON", "LAT": 45.112667, "LON": 1.0385, "ALTI": 265, "MIN_DATE": "2006-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.0385, 45.112667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24553001, "NOM_USUEL": "TOCANE ST APRE", "LAT": 45.253667, "LON": 0.487833, "ALTI": 81, "MIN_DATE": "1969-12-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.487833, 45.253667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24554001, "NOM_USUEL": "LA TOUR BLANCHE", "LAT": 45.3675, "LON": 0.443833, "ALTI": 150, "MIN_DATE": "1954-04-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.443833, 45.3675 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24571001, "NOM_USUEL": "VERGT", "LAT": 45.024667, "LON": 0.718167, "ALTI": 127, "MIN_DATE": "1965-08-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.718167, 45.024667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24571002, "NOM_USUEL": "VERGT GANDY", "LAT": 45.025, "LON": 0.713333, "ALTI": 210, "MIN_DATE": "1979-04-01", "MAX_DATE": "1979-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.713333, 45.025 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24582001, "NOM_USUEL": "VILLARS GENDARMERIE NATIONALE", "LAT": 45.42, "LON": 0.755, "ALTI": 130, "MIN_DATE": "1969-11-01", "MAX_DATE": "1971-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.755, 45.42 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24585001, "NOM_USUEL": "VILLEFRANCHE DU", "LAT": 44.631833, "LON": 1.0695, "ALTI": 189, "MIN_DATE": "1970-07-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.0695, 44.631833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 24587001, "NOM_USUEL": "VITRAC PORT", "LAT": 44.831667, "LON": 1.226667, "ALTI": 100, "MIN_DATE": "1965-10-01", "MAX_DATE": "1968-10-31" }, "geometry": { "type": "Point", "coordinates": [ 1.226667, 44.831667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37001001, "NOM_USUEL": "ABILLY", "LAT": 46.941667, "LON": 0.728333, "ALTI": 65, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.728333, 46.941667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37003001, "NOM_USUEL": "AMBOISE", "LAT": 47.393833, "LON": 0.976833, "ALTI": 119, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.976833, 47.393833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37019001, "NOM_USUEL": "BARROU", "LAT": 46.865, "LON": 0.771667, "ALTI": 59, "MIN_DATE": "1872-06-01", "MAX_DATE": "1937-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.771667, 46.865 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37021001, "NOM_USUEL": "BEAUMONT-LA-R.", "LAT": 47.57, "LON": 0.671667, "ALTI": 145, "MIN_DATE": "1872-03-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.671667, 47.57 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37023001, "NOM_USUEL": "BEAUMONT - BG", "LAT": 47.175, "LON": 1.208333, "ALTI": 100, "MIN_DATE": "1928-01-01", "MAX_DATE": "1933-09-29" }, "geometry": { "type": "Point", "coordinates": [ 1.208333, 47.175 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37026002, "NOM_USUEL": "BETZ - BG", "LAT": 46.991667, "LON": 0.921667, "ALTI": 120, "MIN_DATE": "1872-01-01", "MAX_DATE": "1875-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.921667, 46.991667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37031001, "NOM_USUEL": "BOURGUEIL", "LAT": 47.278333, "LON": 0.162167, "ALTI": 31, "MIN_DATE": "1928-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.162167, 47.278333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37031002, "NOM_USUEL": "BOURGUEIL AGGL.", "LAT": 47.28, "LON": 0.168333, "ALTI": 37, "MIN_DATE": "1872-05-01", "MAX_DATE": "1879-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.168333, 47.28 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37055001, "NOM_USUEL": "CHANNAY - BG", "LAT": 47.48, "LON": 0.263333, "ALTI": 84, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.263333, 47.48 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37058001, "NOM_USUEL": "LA CHAPELLE/L.", "LAT": 47.248333, "LON": 0.221667, "ALTI": 33, "MIN_DATE": "1928-01-01", "MAX_DATE": "1946-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.221667, 47.248333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37063001, "NOM_USUEL": "CHATEAU-RENAULT", "LAT": 47.597667, "LON": 0.925833, "ALTI": 98, "MIN_DATE": "1929-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.925833, 47.597667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37067001, "NOM_USUEL": "CHEILLE - ST-B.", "LAT": 47.255, "LON": 0.465, "ALTI": 54, "MIN_DATE": "1948-01-01", "MAX_DATE": "1984-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.465, 47.255 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37067002, "NOM_USUEL": "CHEILLE - BG", "LAT": 47.26, "LON": 0.405, "ALTI": 39, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.405, 47.26 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37070001, "NOM_USUEL": "CHENONCEAUX", "LAT": 47.331667, "LON": 1.068333, "ALTI": 65, "MIN_DATE": "1933-01-01", "MAX_DATE": "1962-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.068333, 47.331667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37072003, "NOM_USUEL": "CHINON - BG", "LAT": 47.146667, "LON": 0.225, "ALTI": 45, "MIN_DATE": "1928-01-01", "MAX_DATE": "1939-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.225, 47.146667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37077001, "NOM_USUEL": "CINQ-MARS-LA-P.", "LAT": 47.345, "LON": 0.461667, "ALTI": 42, "MIN_DATE": "1947-09-01", "MAX_DATE": "1963-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.461667, 47.345 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37079001, "NOM_USUEL": "CIVRAY-DE-TOUR.", "LAT": 47.331667, "LON": 1.048333, "ALTI": 59, "MIN_DATE": "1877-01-01", "MAX_DATE": "1878-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.048333, 47.331667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37097001, "NOM_USUEL": "DOLUS-LE-SEC", "LAT": 47.163333, "LON": 0.893333, "ALTI": 100, "MIN_DATE": "1934-01-01", "MAX_DATE": "1935-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.893333, 47.163333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37105001, "NOM_USUEL": "FAYE-LA-VINEUSE", "LAT": 46.956667, "LON": 0.341667, "ALTI": 113, "MIN_DATE": "1948-01-01", "MAX_DATE": "1948-02-29" }, "geometry": { "type": "Point", "coordinates": [ 0.341667, 46.956667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37106001, "NOM_USUEL": "LA FERRIERE", "LAT": 47.628333, "LON": 0.746667, "ALTI": 147, "MIN_DATE": "1948-01-01", "MAX_DATE": "1955-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.746667, 47.628333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37111001, "NOM_USUEL": "GENILLE", "LAT": 47.185, "LON": 1.095, "ALTI": 121, "MIN_DATE": "1932-12-01", "MAX_DATE": "1958-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.095, 47.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37112001, "NOM_USUEL": "GIZEUX", "LAT": 47.393333, "LON": 0.193333, "ALTI": 74, "MIN_DATE": "1877-01-01", "MAX_DATE": "1930-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.193333, 47.393333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37113001, "NOM_USUEL": "LE GRAND-PRES.", "LAT": 46.921167, "LON": 0.796333, "ALTI": 58, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.796333, 46.921167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37115001, "NOM_USUEL": "DESCARTES", "LAT": 46.971833, "LON": 0.702333, "ALTI": 65, "MIN_DATE": "1928-01-01", "MAX_DATE": "2012-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.702333, 46.971833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37115002, "NOM_USUEL": "DESCARTES - BG", "LAT": 46.973333, "LON": 0.7, "ALTI": 50, "MIN_DATE": "1877-01-01", "MAX_DATE": "1879-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.7, 46.973333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37117001, "NOM_USUEL": "HOMMES", "LAT": 47.425, "LON": 0.295, "ALTI": 85, "MIN_DATE": "1947-09-01", "MAX_DATE": "1956-02-29" }, "geometry": { "type": "Point", "coordinates": [ 0.295, 47.425 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37119001, "NOM_USUEL": "L'ILE-BOUCHARD", "LAT": 47.114167, "LON": 0.425167, "ALTI": 39, "MIN_DATE": "1947-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.425167, 47.114167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37122001, "NOM_USUEL": "JOUE-LES-TOURS OB", "LAT": 47.325333, "LON": 0.661, "ALTI": 93, "MIN_DATE": "1948-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.661, 47.325333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37122002, "NOM_USUEL": "JOUE-LES-T.- BG", "LAT": 47.35, "LON": 0.661667, "ALTI": 80, "MIN_DATE": "1877-01-01", "MAX_DATE": "1878-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.661667, 47.35 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37123001, "NOM_USUEL": "LANGEAIS", "LAT": 47.325, "LON": 0.405, "ALTI": 42, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.405, 47.325 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37126001, "NOM_USUEL": "LERNE BOURG", "LAT": 47.135, "LON": 0.121667, "ALTI": 75, "MIN_DATE": "1879-01-01", "MAX_DATE": "1880-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.121667, 47.135 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37128001, "NOM_USUEL": "LIGNIERES - BG", "LAT": 47.296667, "LON": 0.415, "ALTI": 85, "MIN_DATE": "1877-01-01", "MAX_DATE": "1940-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.415, 47.296667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37130001, "NOM_USUEL": "LIGUEIL", "LAT": 47.041667, "LON": 0.818333, "ALTI": 77, "MIN_DATE": "1932-12-01", "MAX_DATE": "1936-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.818333, 47.041667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37132002, "NOM_USUEL": "LOCHES - PC", "LAT": 47.128333, "LON": 0.995, "ALTI": 74, "MIN_DATE": "1928-01-01", "MAX_DATE": "1933-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.995, 47.128333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37132003, "NOM_USUEL": "LOCHES - EN", "LAT": 47.128333, "LON": 0.995, "ALTI": 73, "MIN_DATE": "1872-01-01", "MAX_DATE": "1940-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.995, 47.128333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37136001, "NOM_USUEL": "LE LOUROUX", "LAT": 47.158333, "LON": 0.788333, "ALTI": 100, "MIN_DATE": "1872-04-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.788333, 47.158333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37139001, "NOM_USUEL": "LUYNES", "LAT": 47.393333, "LON": 0.555, "ALTI": 85, "MIN_DATE": "1949-10-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.555, 47.393333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37144001, "NOM_USUEL": "MARCAY", "LAT": 47.1, "LON": 0.218333, "ALTI": 65, "MIN_DATE": "1947-09-01", "MAX_DATE": "1955-05-22" }, "geometry": { "type": "Point", "coordinates": [ 0.218333, 47.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37153001, "NOM_USUEL": "MONNAIE", "LAT": 47.494833, "LON": 0.784167, "ALTI": 123, "MIN_DATE": "1947-09-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.784167, 47.494833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37155001, "NOM_USUEL": "MONTHODON", "LAT": 47.65, "LON": 0.836667, "ALTI": 150, "MIN_DATE": "1872-06-01", "MAX_DATE": "1928-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.836667, 47.65 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37156001, "NOM_USUEL": "MONTLOUIS - BG", "LAT": 47.385, "LON": 0.83, "ALTI": 83, "MIN_DATE": "1877-01-01", "MAX_DATE": "1878-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.83, 47.385 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37157001, "NOM_USUEL": "MONTRESOR", "LAT": 47.156667, "LON": 1.203333, "ALTI": 93, "MIN_DATE": "1928-01-01", "MAX_DATE": "2003-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.203333, 47.156667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37159001, "NOM_USUEL": "MONTS", "LAT": 47.275, "LON": 0.625, "ALTI": 55, "MIN_DATE": "1928-01-01", "MAX_DATE": "1940-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.625, 47.275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37163001, "NOM_USUEL": "NAZELLES-NEGRON", "LAT": 47.431667, "LON": 0.953333, "ALTI": 65, "MIN_DATE": "1877-01-01", "MAX_DATE": "1878-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.953333, 47.431667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37167001, "NOM_USUEL": "NEUILLE-PONT-P.", "LAT": 47.545, "LON": 0.545, "ALTI": 118, "MIN_DATE": "1948-03-01", "MAX_DATE": "1949-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.545, 47.545 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37170001, "NOM_USUEL": "NEUVY-LE-ROI", "LAT": 47.608, "LON": 0.596, "ALTI": 103, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.596, 47.608 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37179002, "NOM_USUEL": "PARCAY AERODROME RN10", "LAT": 47.438667, "LON": 0.715333, "ALTI": 104, "MIN_DATE": "1921-01-01", "MAX_DATE": "1927-12-16" }, "geometry": { "type": "Point", "coordinates": [ 0.715333, 47.438667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37180001, "NOM_USUEL": "PARCAY/VIENNE", "LAT": 47.103333, "LON": 0.476667, "ALTI": 45, "MIN_DATE": "1872-02-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.476667, 47.103333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37197001, "NOM_USUEL": "RIGNY-USSE", "LAT": 47.25, "LON": 0.3, "ALTI": 37, "MIN_DATE": "1872-01-01", "MAX_DATE": "1881-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.3, 47.25 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37211001, "NOM_USUEL": "ST-BRANCHS - BG", "LAT": 47.226667, "LON": 0.771667, "ALTI": 70, "MIN_DATE": "1877-01-01", "MAX_DATE": "1880-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.771667, 47.226667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37213002, "NOM_USUEL": "ST-CHRIST. - BG", "LAT": 47.615, "LON": 0.475, "ALTI": 124, "MIN_DATE": "1877-01-01", "MAX_DATE": "1879-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.475, 47.615 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37216001, "NOM_USUEL": "ST-EPAIN - BG", "LAT": 47.143333, "LON": 0.536667, "ALTI": 60, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.536667, 47.143333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37224001, "NOM_USUEL": "ST-LAURENT-EN-G", "LAT": 47.571333, "LON": 0.7765, "ALTI": 155, "MIN_DATE": "1929-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.7765, 47.571333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37230001, "NOM_USUEL": "ST-OUEN-LES-V.", "LAT": 47.466667, "LON": 0.995, "ALTI": 70, "MIN_DATE": "1872-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.995, 47.466667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37231001, "NOM_USUEL": "ST-PATERNE", "LAT": 47.601667, "LON": 0.483333, "ALTI": 70, "MIN_DATE": "1948-01-01", "MAX_DATE": "1972-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.483333, 47.601667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37250001, "NOM_USUEL": "SORIGNY", "LAT": 47.24, "LON": 0.693333, "ALTI": 100, "MIN_DATE": "1947-09-01", "MAX_DATE": "1955-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.693333, 47.24 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37251001, "NOM_USUEL": "SOUVIGNE", "LAT": 47.521667, "LON": 0.396667, "ALTI": 85, "MIN_DATE": "1947-09-01", "MAX_DATE": "1972-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.396667, 47.521667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37254001, "NOM_USUEL": "TAUXIGNY", "LAT": 47.211667, "LON": 0.835, "ALTI": 43, "MIN_DATE": "1933-06-01", "MAX_DATE": "1937-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.835, 47.211667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37261001, "NOM_USUEL": "TOURS -SAPAILLE", "LAT": 47.426667, "LON": 0.693333, "ALTI": 100, "MIN_DATE": "1946-12-31", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.693333, 47.426667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37261004, "NOM_USUEL": "TOURS - PC", "LAT": 47.391667, "LON": 0.683333, "ALTI": 54, "MIN_DATE": "1872-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.683333, 47.391667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37261005, "NOM_USUEL": "TOURS - CMD", "LAT": 47.391667, "LON": 0.683333, "ALTI": 55, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.683333, 47.391667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37261006, "NOM_USUEL": "TOURS -TRANCHEE", "LAT": 47.391667, "LON": 0.683333, "ALTI": 95, "MIN_DATE": "1929-01-01", "MAX_DATE": "1931-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.683333, 47.391667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37261008, "NOM_USUEL": "TOURS -ST-SYMP.", "LAT": 47.391667, "LON": 0.683333, "ALTI": 95, "MIN_DATE": "1877-01-01", "MAX_DATE": "1879-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.683333, 47.391667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37261009, "NOM_USUEL": "TOURS -MTSOUDUN", "LAT": 47.416667, "LON": 0.7, "ALTI": 96, "MIN_DATE": "1927-12-17", "MAX_DATE": "1964-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.7, 47.416667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37281001, "NOM_USUEL": "VOUVRAY", "LAT": 47.41, "LON": 0.798333, "ALTI": 80, "MIN_DATE": "1949-03-01", "MAX_DATE": "1968-08-30" }, "geometry": { "type": "Point", "coordinates": [ 0.798333, 47.41 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37281002, "NOM_USUEL": "VOUVRAY - BG", "LAT": 47.41, "LON": 0.798333, "ALTI": 52, "MIN_DATE": "1880-04-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.798333, 47.41 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37282001, "NOM_USUEL": "YZEURES/CREUSE", "LAT": 46.785, "LON": 0.87, "ALTI": 58, "MIN_DATE": "1928-01-01", "MAX_DATE": "1956-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.87, 46.785 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37003004, "NOM_USUEL": "AMBOISE - LYCEE", "LAT": 47.394167, "LON": 0.977, "ALTI": 116, "MIN_DATE": "1992-01-01", "MAX_DATE": "2021-09-16" }, "geometry": { "type": "Point", "coordinates": [ 0.977, 47.394167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37009001, "NOM_USUEL": "AUTRECHE", "LAT": 47.545, "LON": 0.986667, "ALTI": 108, "MIN_DATE": "1992-01-01", "MAX_DATE": "2001-10-03" }, "geometry": { "type": "Point", "coordinates": [ 0.986667, 47.545 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37012001, "NOM_USUEL": "AVON-LES-ROCHES", "LAT": 47.179667, "LON": 0.471667, "ALTI": 106, "MIN_DATE": "1969-05-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.471667, 47.179667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37023002, "NOM_USUEL": "BEAUMONT_SAPC", "LAT": 47.177167, "LON": 1.211667, "ALTI": 126, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.211667, 47.177167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37026001, "NOM_USUEL": "BETZ-LE-CHATEAU", "LAT": 46.991667, "LON": 0.921667, "ALTI": 132, "MIN_DATE": "1984-01-01", "MAX_DATE": "1984-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.921667, 46.991667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37027001, "NOM_USUEL": "BLERE", "LAT": 47.323333, "LON": 1.025, "ALTI": 61, "MIN_DATE": "1990-09-01", "MAX_DATE": "2006-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.025, 47.323333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37033001, "NOM_USUEL": "BOUSSAY", "LAT": 46.853167, "LON": 0.866167, "ALTI": 130, "MIN_DATE": "1997-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.866167, 46.853167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37037001, "NOM_USUEL": "BRECHES", "LAT": 47.568333, "LON": 0.388333, "ALTI": 54, "MIN_DATE": "1973-04-01", "MAX_DATE": "1973-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.388333, 47.568333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37055002, "NOM_USUEL": "CHANNAY/LATHAN", "LAT": 47.4795, "LON": 0.255333, "ALTI": 87, "MIN_DATE": "1992-01-01", "MAX_DATE": "2021-09-15" }, "geometry": { "type": "Point", "coordinates": [ 0.255333, 47.4795 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37062001, "NOM_USUEL": "CHATEAU-LA-VAL.", "LAT": 47.546667, "LON": 0.323333, "ALTI": 85, "MIN_DATE": "1954-11-01", "MAX_DATE": "1969-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.323333, 47.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37067003, "NOM_USUEL": "CHEILLE", "LAT": 47.260833, "LON": 0.403833, "ALTI": 60, "MIN_DATE": "1992-01-01", "MAX_DATE": "2021-09-15" }, "geometry": { "type": "Point", "coordinates": [ 0.403833, 47.260833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37068001, "NOM_USUEL": "CHEMILLE", "LAT": 47.648333, "LON": 0.64, "ALTI": 100, "MIN_DATE": "2002-01-01", "MAX_DATE": "2011-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.64, 47.648333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37072001, "NOM_USUEL": "CHINON", "LAT": 47.146667, "LON": 0.225, "ALTI": 45, "MIN_DATE": "1965-10-01", "MAX_DATE": "1976-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.225, 47.146667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37072002, "NOM_USUEL": "CHINON - VITI", "LAT": 47.184333, "LON": 0.233833, "ALTI": 76, "MIN_DATE": "1997-02-01", "MAX_DATE": "2021-09-15" }, "geometry": { "type": "Point", "coordinates": [ 0.233833, 47.184333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37076001, "NOM_USUEL": "CINAIS", "LAT": 47.148333, "LON": 0.18, "ALTI": 55, "MIN_DATE": "1976-11-01", "MAX_DATE": "1984-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.18, 47.148333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37083001, "NOM_USUEL": "CORMERY", "LAT": 47.2645, "LON": 0.836667, "ALTI": 85, "MIN_DATE": "2016-03-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.836667, 47.2645 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37087001, "NOM_USUEL": "COURCOUE", "LAT": 47.0095, "LON": 0.396333, "ALTI": 115, "MIN_DATE": "1972-05-02", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.396333, 47.0095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37103001, "NOM_USUEL": "ESVES-LE-MOUT.", "LAT": 47.042667, "LON": 0.893333, "ALTI": 90, "MIN_DATE": "1989-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.893333, 47.042667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37107001, "NOM_USUEL": "FERRIERE-LARCON", "LAT": 46.9875, "LON": 0.875, "ALTI": 116, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.875, 46.9875 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37109001, "NOM_USUEL": "FONDETTES", "LAT": 47.425333, "LON": 0.604167, "ALTI": 93, "MIN_DATE": "1992-01-01", "MAX_DATE": "2021-09-15" }, "geometry": { "type": "Point", "coordinates": [ 0.604167, 47.425333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37120001, "NOM_USUEL": "INGRANDES -BLTO", "LAT": 47.288333, "LON": 0.268333, "ALTI": 56, "MIN_DATE": "1997-02-26", "MAX_DATE": "2011-09-04" }, "geometry": { "type": "Point", "coordinates": [ 0.268333, 47.288333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37122003, "NOM_USUEL": "JOUE-LES-TOURS", "LAT": 47.337167, "LON": 0.665333, "ALTI": 93, "MIN_DATE": "1995-01-01", "MAX_DATE": "2018-10-16" }, "geometry": { "type": "Point", "coordinates": [ 0.665333, 47.337167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37128002, "NOM_USUEL": "LIGNIERES-DE-T.", "LAT": 47.293, "LON": 0.402833, "ALTI": 32, "MIN_DATE": "1984-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.402833, 47.293 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37129001, "NOM_USUEL": "LIGRE - PICHET", "LAT": 47.118333, "LON": 0.251667, "ALTI": 75, "MIN_DATE": "1984-06-01", "MAX_DATE": "2004-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.251667, 47.118333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37129002, "NOM_USUEL": "LIGRE", "LAT": 47.112333, "LON": 0.273, "ALTI": 67, "MIN_DATE": "1992-01-01", "MAX_DATE": "2021-09-15" }, "geometry": { "type": "Point", "coordinates": [ 0.273, 47.112333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37131002, "NOM_USUEL": "LIMERAY", "LAT": 47.461167, "LON": 1.011833, "ALTI": 113, "MIN_DATE": "2004-08-01", "MAX_DATE": "2021-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.011833, 47.461167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37132001, "NOM_USUEL": "LOCHES", "LAT": 47.093333, "LON": 0.966667, "ALTI": 125, "MIN_DATE": "1965-11-01", "MAX_DATE": "1986-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.966667, 47.093333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37136002, "NOM_USUEL": "LE LOUROUX", "LAT": 47.156333, "LON": 0.696833, "ALTI": 123, "MIN_DATE": "1993-09-01", "MAX_DATE": "2008-10-01" }, "geometry": { "type": "Point", "coordinates": [ 0.696833, 47.156333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37141001, "NOM_USUEL": "LUZILLE", "LAT": 47.269833, "LON": 1.0425, "ALTI": 93, "MIN_DATE": "1958-09-01", "MAX_DATE": "2011-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.0425, 47.269833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37150002, "NOM_USUEL": "MAZIERES", "LAT": 47.387833, "LON": 0.400333, "ALTI": 92, "MIN_DATE": "1989-01-01", "MAX_DATE": "2011-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.400333, 47.387833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37156002, "NOM_USUEL": "MONTLOUIS", "LAT": 47.373333, "LON": 0.823333, "ALTI": 50, "MIN_DATE": "1988-03-01", "MAX_DATE": "2000-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.823333, 47.373333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37179001, "NOM_USUEL": "TOURS", "LAT": 47.4445, "LON": 0.727333, "ALTI": 108, "MIN_DATE": "1959-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.727333, 47.4445 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37183001, "NOM_USUEL": "PERRUSSON", "LAT": 47.110333, "LON": 1.023833, "ALTI": 110, "MIN_DATE": "1988-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.023833, 47.110333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37192001, "NOM_USUEL": "REIGNAC", "LAT": 47.219333, "LON": 0.899, "ALTI": 90, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.899, 47.219333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37194001, "NOM_USUEL": "REUGNY", "LAT": 47.467, "LON": 0.889333, "ALTI": 104, "MIN_DATE": "1989-03-01", "MAX_DATE": "2016-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.889333, 47.467 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37195001, "NOM_USUEL": "LA RICHE", "LAT": 47.39, "LON": 0.663333, "ALTI": 53, "MIN_DATE": "1950-01-01", "MAX_DATE": "1964-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.663333, 47.39 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37208001, "NOM_USUEL": "ST-AVERTIN", "LAT": 47.346667, "LON": 0.731, "ALTI": 90, "MIN_DATE": "1950-10-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.731, 47.346667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37211002, "NOM_USUEL": "ST-BRANCHS", "LAT": 47.245, "LON": 0.813833, "ALTI": 85, "MIN_DATE": "1988-04-01", "MAX_DATE": "2016-02-29" }, "geometry": { "type": "Point", "coordinates": [ 0.813833, 47.245 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37212001, "NOM_USUEL": "STE-CATHERINE", "LAT": 47.127333, "LON": 0.694667, "ALTI": 116, "MIN_DATE": "1955-08-01", "MAX_DATE": "2011-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.694667, 47.127333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37213001, "NOM_USUEL": "ST-CHRIST.-SICA", "LAT": 47.611667, "LON": 0.473333, "ALTI": 64, "MIN_DATE": "1975-03-01", "MAX_DATE": "2012-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.473333, 47.611667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37213003, "NOM_USUEL": "ST-CHRISTOPHE-SUR-NAIS", "LAT": 47.6155, "LON": 0.464333, "ALTI": 107, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.464333, 47.6155 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37214001, "NOM_USUEL": "ST-CYR/LOIRE", "LAT": 47.423167, "LON": 0.663667, "ALTI": 93, "MIN_DATE": "1988-03-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.663667, 47.423167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37216002, "NOM_USUEL": "ST-EPAIN", "LAT": 47.157167, "LON": 0.604833, "ALTI": 112, "MIN_DATE": "1992-01-01", "MAX_DATE": "2021-09-15" }, "geometry": { "type": "Point", "coordinates": [ 0.604833, 47.157167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37216003, "NOM_USUEL": "SAINT EPAIN", "LAT": 47.157167, "LON": 0.604833, "ALTI": 112, "MIN_DATE": "2020-10-06", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.604833, 47.157167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37223001, "NOM_USUEL": "ST-LAURENT-DE-L", "LAT": 47.517333, "LON": 0.262667, "ALTI": 69, "MIN_DATE": "1988-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.262667, 47.517333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37228001, "NOM_USUEL": "ST-NICOLAS-DE-BOURGUEIL", "LAT": 47.29, "LON": 0.107833, "ALTI": 44, "MIN_DATE": "2008-04-27", "MAX_DATE": "2021-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.107833, 47.29 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37240001, "NOM_USUEL": "SAUNAY", "LAT": 47.590333, "LON": 0.931333, "ALTI": 109, "MIN_DATE": "2001-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.931333, 47.590333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37241001, "NOM_USUEL": "SAVIGNE/LATHAN", "LAT": 47.4415, "LON": 0.319667, "ALTI": 88, "MIN_DATE": "1956-11-05", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.319667, 47.4415 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37242001, "NOM_USUEL": "SAVIGNY -CHOUZE", "LAT": 47.228333, "LON": 0.146667, "ALTI": 33, "MIN_DATE": "1977-03-01", "MAX_DATE": "1992-01-05" }, "geometry": { "type": "Point", "coordinates": [ 0.146667, 47.228333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37242002, "NOM_USUEL": "SAVIGNY - VERON", "LAT": 47.227, "LON": 0.149333, "ALTI": 33, "MIN_DATE": "1988-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.149333, 47.227 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37249001, "NOM_USUEL": "SONZAY", "LAT": 47.5185, "LON": 0.470667, "ALTI": 117, "MIN_DATE": "2003-09-01", "MAX_DATE": "2018-07-10" }, "geometry": { "type": "Point", "coordinates": [ 0.470667, 47.5185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37253001, "NOM_USUEL": "SUBLAINES", "LAT": 47.265, "LON": 0.993167, "ALTI": 111, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.993167, 47.265 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37261002, "NOM_USUEL": "TOURS - CARCAS.", "LAT": 47.412333, "LON": 0.709167, "ALTI": 95, "MIN_DATE": "1989-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.709167, 47.412333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 37261003, "NOM_USUEL": "TOURS -PILORGET", "LAT": 47.416667, "LON": 0.7, "ALTI": 97, "MIN_DATE": "1956-01-01", "MAX_DATE": "1969-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.7, 47.416667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54003001, "NOM_USUEL": "ABONCOURT", "LAT": 48.358333, "LON": 5.965, "ALTI": 391, "MIN_DATE": "1884-01-01", "MAX_DATE": "1917-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.965, 48.358333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54008001, "NOM_USUEL": "ALLAIN", "LAT": 48.548333, "LON": 5.908333, "ALTI": 307, "MIN_DATE": "1877-01-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.908333, 48.548333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54012002, "NOM_USUEL": "AMANCE-AGGL", "LAT": 48.753333, "LON": 6.278333, "ALTI": 400, "MIN_DATE": "1877-01-01", "MAX_DATE": "1917-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.278333, 48.753333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54026001, "NOM_USUEL": "ATHIENVILLE-AGGL", "LAT": 48.715, "LON": 6.49, "ALTI": 236, "MIN_DATE": "1911-01-01", "MAX_DATE": "1912-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.49, 48.715 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54039001, "NOM_USUEL": "BACCARAT", "LAT": 48.451667, "LON": 6.740333, "ALTI": 272, "MIN_DATE": "1884-01-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.740333, 48.451667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54040001, "NOM_USUEL": "BADONVILLER", "LAT": 48.498, "LON": 6.896167, "ALTI": 336, "MIN_DATE": "1935-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.896167, 48.498 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54051001, "NOM_USUEL": "BATILLY MINE DE MOINEVILLE", "LAT": 49.171667, "LON": 5.966667, "ALTI": 268, "MIN_DATE": "1938-01-01", "MAX_DATE": "1969-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.966667, 49.171667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54054002, "NOM_USUEL": "BAYON", "LAT": 48.475, "LON": 6.313333, "ALTI": 250, "MIN_DATE": "1892-01-01", "MAX_DATE": "1917-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.313333, 48.475 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54061001, "NOM_USUEL": "BENAMENIL AGGL.", "LAT": 48.568333, "LON": 6.67, "ALTI": 234, "MIN_DATE": "1882-01-01", "MAX_DATE": "1883-11-29" }, "geometry": { "type": "Point", "coordinates": [ 6.67, 48.568333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54067001, "NOM_USUEL": "BEUVEILLE AGGL.", "LAT": 49.431667, "LON": 5.69, "ALTI": 273, "MIN_DATE": "1897-12-01", "MAX_DATE": "1907-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.69, 49.431667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54077001, "NOM_USUEL": "BLAMONT", "LAT": 48.59, "LON": 6.843333, "ALTI": 265, "MIN_DATE": "1880-04-01", "MAX_DATE": "1964-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.843333, 48.59 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54099001, "NOM_USUEL": "BRIEY AGGL.", "LAT": 49.246667, "LON": 5.94, "ALTI": 260, "MIN_DATE": "1904-06-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.94, 49.246667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54105001, "NOM_USUEL": "BULLIGNY", "LAT": 48.58, "LON": 5.853333, "ALTI": 291, "MIN_DATE": "1949-01-01", "MAX_DATE": "2008-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.853333, 48.58 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54112001, "NOM_USUEL": "CHAMBLEY-BUSSIERES ECLUSE", "LAT": 49.046667, "LON": 5.898333, "ALTI": 258, "MIN_DATE": "1935-01-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.898333, 49.046667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54115001, "NOM_USUEL": "CHAMPIGNEULLES", "LAT": 48.733333, "LON": 6.16, "ALTI": 235, "MIN_DATE": "1880-01-01", "MAX_DATE": "1952-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.16, 48.733333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54128001, "NOM_USUEL": "CHOLOY-MENILLOT BOIS-HARUIN", "LAT": 48.661667, "LON": 5.813333, "ALTI": 252, "MIN_DATE": "1880-04-01", "MAX_DATE": "1881-02-27" }, "geometry": { "type": "Point", "coordinates": [ 5.813333, 48.661667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54135001, "NOM_USUEL": "COLOMBEY-LES-BELLES", "LAT": 48.526667, "LON": 5.896667, "ALTI": 327, "MIN_DATE": "1916-02-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.896667, 48.526667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54148001, "NOM_USUEL": "CROISMARE", "LAT": 48.598333, "LON": 6.57, "ALTI": 244, "MIN_DATE": "1895-09-01", "MAX_DATE": "1919-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.57, 48.598333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54176001, "NOM_USUEL": "EINVILLE-AU-JARD", "LAT": 48.655, "LON": 6.486667, "ALTI": 226, "MIN_DATE": "1877-01-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.486667, 48.655 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54177001, "NOM_USUEL": "EMBERMENIL MF LEVRIEUX", "LAT": 48.628333, "LON": 6.693333, "ALTI": 230, "MIN_DATE": "1949-06-01", "MAX_DATE": "1957-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.693333, 48.628333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54182001, "NOM_USUEL": "ESSEY-ET-MAIZE.", "LAT": 48.919333, "LON": 5.809167, "ALTI": 218, "MIN_DATE": "1949-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.809167, 48.919333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54182002, "NOM_USUEL": "ESSEY-ET-MAIZERAIS", "LAT": 48.921667, "LON": 5.813333, "ALTI": 218, "MIN_DATE": "1909-05-01", "MAX_DATE": "1916-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.813333, 48.921667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54187001, "NOM_USUEL": "EUVEZIN", "LAT": 48.923333, "LON": 5.838333, "ALTI": 213, "MIN_DATE": "1885-12-01", "MAX_DATE": "1909-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.838333, 48.923333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54199001, "NOM_USUEL": "FLIN AGGL.", "LAT": 48.496667, "LON": 6.655, "ALTI": 253, "MIN_DATE": "1877-01-01", "MAX_DATE": "1883-11-29" }, "geometry": { "type": "Point", "coordinates": [ 6.655, 48.496667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54205001, "NOM_USUEL": "FOUG", "LAT": 48.678333, "LON": 5.793333, "ALTI": 260, "MIN_DATE": "1872-02-01", "MAX_DATE": "1917-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.793333, 48.678333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54215001, "NOM_USUEL": "FROUARD PC", "LAT": 48.758333, "LON": 6.131667, "ALTI": 190, "MIN_DATE": "1877-01-01", "MAX_DATE": "1940-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.131667, 48.758333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54252001, "NOM_USUEL": "HAROUE EC.", "LAT": 48.468333, "LON": 6.178333, "ALTI": 245, "MIN_DATE": "1896-12-01", "MAX_DATE": "1940-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.178333, 48.468333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54261001, "NOM_USUEL": "HERSERANGE LANDRIVAUX ECOLE", "LAT": 49.52, "LON": 5.791667, "ALTI": 285, "MIN_DATE": "1949-01-01", "MAX_DATE": "1952-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.791667, 49.52 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54270001, "NOM_USUEL": "HUSSIGNY-GODBRANGE AGGL.", "LAT": 49.493333, "LON": 5.868333, "ALTI": 423, "MIN_DATE": "1881-01-01", "MAX_DATE": "1914-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.868333, 49.493333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54295001, "NOM_USUEL": "LANDRES AGGLOMERATION", "LAT": 49.32, "LON": 5.806667, "ALTI": 305, "MIN_DATE": "1906-12-31", "MAX_DATE": "1914-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.806667, 49.32 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54322004, "NOM_USUEL": "LONGUYON VILLE", "LAT": 49.441667, "LON": 5.606667, "ALTI": 218, "MIN_DATE": "1935-01-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.606667, 49.441667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54323001, "NOM_USUEL": "LONGWY EC. ST-LOUIS", "LAT": 49.52, "LON": 5.768333, "ALTI": 256, "MIN_DATE": "1935-02-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.768333, 49.52 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54327001, "NOM_USUEL": "LUCEY GDE-RUE", "LAT": 48.721667, "LON": 5.836667, "ALTI": 270, "MIN_DATE": "1949-01-01", "MAX_DATE": "1988-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.836667, 48.721667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54329001, "NOM_USUEL": "LUNEVILLE", "LAT": 48.5835, "LON": 6.476, "ALTI": 222, "MIN_DATE": "1877-01-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.476, 48.5835 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54339002, "NOM_USUEL": "MALZEVILLE PONT", "LAT": 48.71, "LON": 6.186667, "ALTI": 152, "MIN_DATE": "1935-01-01", "MAX_DATE": "1940-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.186667, 48.71 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54341001, "NOM_USUEL": "MANCE", "LAT": 49.266667, "LON": 5.915, "ALTI": 220, "MIN_DATE": "1881-01-01", "MAX_DATE": "1902-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.915, 49.266667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54342001, "NOM_USUEL": "MANCIEULLES", "LAT": 49.283333, "LON": 5.891667, "ALTI": 250, "MIN_DATE": "1935-01-01", "MAX_DATE": "1969-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.891667, 49.283333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54357001, "NOM_USUEL": "MAXEVILLE AGGL.", "LAT": 48.708333, "LON": 6.161667, "ALTI": 225, "MIN_DATE": "1872-02-01", "MAX_DATE": "1910-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.161667, 48.708333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54363001, "NOM_USUEL": "MERCY LE HAUT BG", "LAT": 49.366667, "LON": 5.825, "ALTI": 360, "MIN_DATE": "1935-01-01", "MAX_DATE": "1940-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.825, 49.366667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54374001, "NOM_USUEL": "MONCEL-SUR-SEILLE EC.", "LAT": 48.765, "LON": 6.42, "ALTI": 206, "MIN_DATE": "1872-01-01", "MAX_DATE": "1936-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.42, 48.765 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54386001, "NOM_USUEL": "MORIVILLER EC.", "LAT": 48.476667, "LON": 6.44, "ALTI": 322, "MIN_DATE": "1877-02-01", "MAX_DATE": "1940-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.44, 48.476667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54393001, "NOM_USUEL": "MOYEN AGGL.", "LAT": 48.485, "LON": 6.57, "ALTI": 295, "MIN_DATE": "1884-01-01", "MAX_DATE": "1917-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.57, 48.485 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54395001, "NOM_USUEL": "LA MALGRANGE", "LAT": 48.688333, "LON": 6.173333, "ALTI": 234, "MIN_DATE": "1880-04-01", "MAX_DATE": "1907-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.173333, 48.688333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54395002, "NOM_USUEL": "NANCY - EN", "LAT": 48.688333, "LON": 6.173333, "ALTI": 217, "MIN_DATE": "1880-01-01", "MAX_DATE": "1939-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.173333, 48.688333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54395003, "NOM_USUEL": "NANCY - FACULTE", "LAT": 48.688333, "LON": 6.173333, "ALTI": 213, "MIN_DATE": "1871-12-01", "MAX_DATE": "1956-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.173333, 48.688333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54395004, "NOM_USUEL": "NANCY-STE-CATHERINE", "LAT": 48.688333, "LON": 6.173333, "ALTI": 197, "MIN_DATE": "1910-11-30", "MAX_DATE": "1920-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.173333, 48.688333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54397001, "NOM_USUEL": "NEUVES-MAISONS AGGL.", "LAT": 48.613333, "LON": 6.1, "ALTI": 218, "MIN_DATE": "1880-04-01", "MAX_DATE": "1920-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.1, 48.613333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54400002, "NOM_USUEL": "NOMENY BOURG", "LAT": 48.89, "LON": 6.221667, "ALTI": 186, "MIN_DATE": "1889-02-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.221667, 48.89 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54418001, "NOM_USUEL": "PARROY AGGL.", "LAT": 48.681667, "LON": 6.598333, "ALTI": 233, "MIN_DATE": "1883-01-01", "MAX_DATE": "1910-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.598333, 48.681667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54423001, "NOM_USUEL": "PEXONNE AGGL.", "LAT": 48.483333, "LON": 6.866667, "ALTI": 310, "MIN_DATE": "1882-01-01", "MAX_DATE": "1920-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.866667, 48.483333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54427001, "NOM_USUEL": "PIERRE-PERCEE", "LAT": 48.465, "LON": 6.945, "ALTI": 328, "MIN_DATE": "1949-11-01", "MAX_DATE": "1996-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.945, 48.465 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54430001, "NOM_USUEL": "POMPEY AGGL.", "LAT": 48.771667, "LON": 6.126667, "ALTI": 197, "MIN_DATE": "1902-11-30", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.126667, 48.771667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54431001, "NOM_USUEL": "PONT-A-MOUSSON EC.", "LAT": 48.901667, "LON": 6.05, "ALTI": 184, "MIN_DATE": "1935-01-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.05, 48.901667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54434001, "NOM_USUEL": "PRAYE", "LAT": 48.436333, "LON": 6.107833, "ALTI": 307, "MIN_DATE": "1949-01-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.107833, 48.436333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54460001, "NOM_USUEL": "ROGEVILLE AGGL.", "LAT": 48.82, "LON": 5.98, "ALTI": 310, "MIN_DATE": "1880-04-01", "MAX_DATE": "1903-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.98, 48.82 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54483001, "NOM_USUEL": "ST NICOLAS DE P", "LAT": 48.626333, "LON": 6.294333, "ALTI": 255, "MIN_DATE": "1904-06-01", "MAX_DATE": "2009-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.294333, 48.626333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54488002, "NOM_USUEL": "ST SAUVEUR - SOYE", "LAT": 48.533333, "LON": 6.973333, "ALTI": 335, "MIN_DATE": "1949-10-01", "MAX_DATE": "1967-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.973333, 48.533333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54492001, "NOM_USUEL": "SANZEY MF ROYAUMEIX", "LAT": 48.773333, "LON": 5.836667, "ALTI": 238, "MIN_DATE": "1949-06-01", "MAX_DATE": "1959-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.836667, 48.773333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54502001, "NOM_USUEL": "SERRES AGGL.", "LAT": 48.69, "LON": 6.461667, "ALTI": 295, "MIN_DATE": "1884-01-01", "MAX_DATE": "1920-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.461667, 48.69 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54518001, "NOM_USUEL": "THIAUCOURT-REGNIEVILLE PC", "LAT": 48.953333, "LON": 5.865, "ALTI": 210, "MIN_DATE": "1884-12-01", "MAX_DATE": "1884-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.865, 48.953333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54520001, "NOM_USUEL": "THIEBAUMENIL", "LAT": 48.58, "LON": 6.621667, "ALTI": 244, "MIN_DATE": "1885-02-28", "MAX_DATE": "1898-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.621667, 48.58 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54526001, "NOM_USUEL": "NANCY-ESSEY", "LAT": 48.687833, "LON": 6.2215, "ALTI": 212, "MIN_DATE": "1927-09-13", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.2215, 48.687833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54526002, "NOM_USUEL": "TOMBLAINE EC. AGRICOLE", "LAT": 48.685, "LON": 6.21, "ALTI": 200, "MIN_DATE": "1883-01-01", "MAX_DATE": "1917-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.21, 48.685 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54528001, "NOM_USUEL": "TOUL - ECLUSE", "LAT": 48.675, "LON": 5.888333, "ALTI": 213, "MIN_DATE": "1877-01-01", "MAX_DATE": "2005-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.888333, 48.675 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54528002, "NOM_USUEL": "TOUL SMM", "LAT": 48.675, "LON": 5.888333, "ALTI": 382, "MIN_DATE": "1923-08-01", "MAX_DATE": "1930-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.888333, 48.675 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54533001, "NOM_USUEL": "TRIEUX BOURG", "LAT": 49.323333, "LON": 5.935, "ALTI": 310, "MIN_DATE": "1935-01-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.935, 49.323333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54542001, "NOM_USUEL": "VALLEROY EC.", "LAT": 49.211667, "LON": 5.931667, "ALTI": 240, "MIN_DATE": "1935-03-01", "MAX_DATE": "1935-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.931667, 49.211667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54547001, "NOM_USUEL": "VANDOEUVRE", "LAT": 48.65, "LON": 6.15, "ALTI": 380, "MIN_DATE": "1921-03-01", "MAX_DATE": "1927-09-11" }, "geometry": { "type": "Point", "coordinates": [ 6.15, 48.65 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54552001, "NOM_USUEL": "VAUDEMONT AGGL.", "LAT": 48.415, "LON": 6.055, "ALTI": 495, "MIN_DATE": "1895-12-01", "MAX_DATE": "1917-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.055, 48.415 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54557003, "NOM_USUEL": "VELAINE-EN-HAYE", "LAT": 48.703333, "LON": 6.02, "ALTI": 340, "MIN_DATE": "1880-01-01", "MAX_DATE": "1902-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.02, 48.703333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54563001, "NOM_USUEL": "VEZELISE AGGL.", "LAT": 48.485, "LON": 6.085, "ALTI": 293, "MIN_DATE": "1871-12-01", "MAX_DATE": "1920-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.085, 48.485 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54584001, "NOM_USUEL": "VILLEY-SAINT-ETIENNE AGGL.", "LAT": 48.731667, "LON": 5.976667, "ALTI": 246, "MIN_DATE": "1893-12-01", "MAX_DATE": "1936-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.976667, 48.731667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54012001, "NOM_USUEL": "AMANCE", "LAT": 48.751667, "LON": 6.338333, "ALTI": 255, "MIN_DATE": "1975-01-01", "MAX_DATE": "2002-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.338333, 48.751667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54023001, "NOM_USUEL": "ARRACOURT", "LAT": 48.723333, "LON": 6.530667, "ALTI": 244, "MIN_DATE": "1971-09-01", "MAX_DATE": "2010-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.530667, 48.723333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54040003, "NOM_USUEL": "BADONVILLER-SA", "LAT": 48.495, "LON": 6.9, "ALTI": 332, "MIN_DATE": "1988-10-19", "MAX_DATE": "2002-05-29" }, "geometry": { "type": "Point", "coordinates": [ 6.9, 48.495 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54048001, "NOM_USUEL": "MUSSOT", "LAT": 49.231667, "LON": 5.891667, "ALTI": 230, "MIN_DATE": "1958-01-01", "MAX_DATE": "1965-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.891667, 49.231667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54054001, "NOM_USUEL": "BAYON", "LAT": 48.470833, "LON": 6.316, "ALTI": 268, "MIN_DATE": "1971-11-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.316, 48.470833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54056001, "NOM_USUEL": "BAZAILLES MINE", "LAT": 49.406667, "LON": 5.765, "ALTI": 265, "MIN_DATE": "1959-02-01", "MAX_DATE": "1969-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.765, 49.406667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54062001, "NOM_USUEL": "BENNEY", "LAT": 48.514333, "LON": 6.211167, "ALTI": 350, "MIN_DATE": "2005-05-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.211167, 48.514333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54066001, "NOM_USUEL": "BETTAINVILLERS", "LAT": 49.301667, "LON": 5.908333, "ALTI": 287, "MIN_DATE": "1982-07-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.908333, 49.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54077002, "NOM_USUEL": "BLAMONT", "LAT": 48.6, "LON": 6.833333, "ALTI": 270, "MIN_DATE": "1984-08-01", "MAX_DATE": "2005-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.833333, 48.6 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54100001, "NOM_USUEL": "BRIN-SUR-SEILLE", "LAT": 48.785, "LON": 6.353333, "ALTI": 205, "MIN_DATE": "1967-11-01", "MAX_DATE": "1996-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.353333, 48.785 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54103001, "NOM_USUEL": "BRUVILLE", "LAT": 49.133333, "LON": 5.915, "ALTI": 233, "MIN_DATE": "1992-01-01", "MAX_DATE": "1997-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.915, 49.133333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54112002, "NOM_USUEL": "CHAMBLEY", "LAT": 49.051667, "LON": 5.926667, "ALTI": 306, "MIN_DATE": "1985-11-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.926667, 49.051667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54113001, "NOM_USUEL": "CHAMPENOUX", "LAT": 48.741667, "LON": 6.346667, "ALTI": 273, "MIN_DATE": "1951-03-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.346667, 48.741667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54113002, "NOM_USUEL": "CHAMPENOUX-ARBO-INRA", "LAT": 48.750667, "LON": 6.340167, "ALTI": 255, "MIN_DATE": "2002-05-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.340167, 48.750667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54136001, "NOM_USUEL": "CONFLANS", "LAT": 49.163333, "LON": 5.857833, "ALTI": 197, "MIN_DATE": "1974-01-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.857833, 49.163333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54141001, "NOM_USUEL": "COYVILLER", "LAT": 48.588333, "LON": 6.283333, "ALTI": 277, "MIN_DATE": "1992-09-01", "MAX_DATE": "1994-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.283333, 48.588333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54155001, "NOM_USUEL": "DEUXVILLE RM", "LAT": 48.616667, "LON": 6.455, "ALTI": 228, "MIN_DATE": "1958-01-01", "MAX_DATE": "1967-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.455, 48.616667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54159001, "NOM_USUEL": "DOMBASLE", "LAT": 48.622, "LON": 6.349333, "ALTI": 216, "MIN_DATE": "2009-09-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.349333, 48.622 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54161001, "NOM_USUEL": "DOMEVRE-SUR-VEZOUZE", "LAT": 48.56, "LON": 6.806667, "ALTI": 255, "MIN_DATE": "1964-06-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.806667, 48.56 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54171001, "NOM_USUEL": "DONCOURT-LES-CONFLANS", "LAT": 49.1535, "LON": 5.929333, "ALTI": 235, "MIN_DATE": "2005-04-23", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.929333, 49.1535 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54181001, "NOM_USUEL": "ERROUVILLE_SAPC", "LAT": 49.42, "LON": 5.909833, "ALTI": 373, "MIN_DATE": "2014-04-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.909833, 49.42 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54211001, "NOM_USUEL": "FREMONVILLE", "LAT": 48.6, "LON": 6.9, "ALTI": 285, "MIN_DATE": "1972-10-01", "MAX_DATE": "1984-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.9, 48.6 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54227001, "NOM_USUEL": "GIRAUMONT RM", "LAT": 49.173333, "LON": 5.911667, "ALTI": 197, "MIN_DATE": "1970-01-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.911667, 49.173333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54257001, "NOM_USUEL": "HEILLECOURT RM", "LAT": 48.653333, "LON": 6.191667, "ALTI": 224, "MIN_DATE": "1958-01-01", "MAX_DATE": "1967-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.191667, 48.653333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54273001, "NOM_USUEL": "JARNY RM", "LAT": 49.16, "LON": 5.876667, "ALTI": 320, "MIN_DATE": "1972-06-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.876667, 49.16 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54273002, "NOM_USUEL": "JARNY", "LAT": 49.154667, "LON": 5.869667, "ALTI": 210, "MIN_DATE": "2009-01-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.869667, 49.154667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54279001, "NOM_USUEL": "JEZAINVILLE FORET DE PUVENELLE", "LAT": 48.871667, "LON": 6.038333, "ALTI": 370, "MIN_DATE": "1954-11-01", "MAX_DATE": "1958-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.038333, 48.871667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54292001, "NOM_USUEL": "LAMATH", "LAT": 48.5325, "LON": 6.450833, "ALTI": 230, "MIN_DATE": "1973-04-01", "MAX_DATE": "1990-02-28" }, "geometry": { "type": "Point", "coordinates": [ 6.450833, 48.5325 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54297001, "NOM_USUEL": "LANEUVEVILLE", "LAT": 48.608333, "LON": 6.646667, "ALTI": 261, "MIN_DATE": "1957-05-01", "MAX_DATE": "2002-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.646667, 48.608333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54308001, "NOM_USUEL": "LEINTREY RM", "LAT": 48.623333, "LON": 6.738333, "ALTI": 265, "MIN_DATE": "1969-03-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.738333, 48.623333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54313001, "NOM_USUEL": "LETRICOURT", "LAT": 48.875833, "LON": 6.293333, "ALTI": 220, "MIN_DATE": "2005-04-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.293333, 48.875833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54322001, "NOM_USUEL": "LONGUYON", "LAT": 49.431667, "LON": 5.612833, "ALTI": 257, "MIN_DATE": "1951-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.612833, 49.431667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54322002, "NOM_USUEL": "LONGUYON-VILLAN", "LAT": 49.493333, "LON": 5.593333, "ALTI": 337, "MIN_DATE": "1958-12-01", "MAX_DATE": "1999-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.593333, 49.493333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54322005, "NOM_USUEL": "LONGUYON-VILLAN", "LAT": 49.488333, "LON": 5.591667, "ALTI": 337, "MIN_DATE": "1991-01-19", "MAX_DATE": "1997-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.591667, 49.488333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54327002, "NOM_USUEL": "LUCEY", "LAT": 48.716667, "LON": 5.833333, "ALTI": 270, "MIN_DATE": "1992-10-01", "MAX_DATE": "1994-10-11" }, "geometry": { "type": "Point", "coordinates": [ 5.833333, 48.716667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54332001, "NOM_USUEL": "MAIDIERES", "LAT": 48.9, "LON": 6.033333, "ALTI": 185, "MIN_DATE": "1958-06-01", "MAX_DATE": "1990-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.033333, 48.9 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54339001, "NOM_USUEL": "MALZEVILLE PIXERECOURT", "LAT": 48.71, "LON": 6.186667, "ALTI": 152, "MIN_DATE": "1959-07-01", "MAX_DATE": "1971-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.186667, 48.71 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54350001, "NOM_USUEL": "MARAINVILLER", "LAT": 48.585667, "LON": 6.6005, "ALTI": 246, "MIN_DATE": "2003-01-01", "MAX_DATE": "2021-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.6005, 48.585667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54353001, "NOM_USUEL": "MARS LA TOUR STN GOUDRON", "LAT": 49.096667, "LON": 5.885, "ALTI": 239, "MIN_DATE": "1970-08-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.885, 49.096667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54367001, "NOM_USUEL": "MEXY", "LAT": 49.498333, "LON": 5.783333, "ALTI": 372, "MIN_DATE": "1981-11-01", "MAX_DATE": "2007-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.783333, 49.498333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54370001, "NOM_USUEL": "MINORVILLE RM", "LAT": 48.816667, "LON": 5.89, "ALTI": 245, "MIN_DATE": "1978-05-01", "MAX_DATE": "1979-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.89, 48.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54375001, "NOM_USUEL": "MONTAUVILLE MF PERE HILARION", "LAT": 48.9, "LON": 6.023333, "ALTI": 305, "MIN_DATE": "1951-09-01", "MAX_DATE": "1954-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.023333, 48.9 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54400001, "NOM_USUEL": "NOMENY", "LAT": 48.881667, "LON": 6.235, "ALTI": 208, "MIN_DATE": "1961-01-01", "MAX_DATE": "2005-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.235, 48.881667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54405001, "NOM_USUEL": "NANCY-OCHEY", "LAT": 48.581, "LON": 5.959833, "ALTI": 336, "MIN_DATE": "1963-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.959833, 48.581 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54407001, "NOM_USUEL": "OGNEVILLE", "LAT": 48.475, "LON": 6.067667, "ALTI": 300, "MIN_DATE": "2005-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.067667, 48.475 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54415001, "NOM_USUEL": "PAGNY-SUR-MOSELLE", "LAT": 48.983833, "LON": 6.031167, "ALTI": 179, "MIN_DATE": "1970-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.031167, 48.983833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54417001, "NOM_USUEL": "PAREY-SAINT-CESAIRE EC.", "LAT": 48.53, "LON": 6.066667, "ALTI": 285, "MIN_DATE": "1952-10-01", "MAX_DATE": "1954-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.066667, 48.53 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54419001, "NOM_USUEL": "PARUX RM", "LAT": 48.538333, "LON": 6.921667, "ALTI": 310, "MIN_DATE": "1969-03-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.921667, 48.538333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54446001, "NOM_USUEL": "RECHICOURT", "LAT": 48.716667, "LON": 6.583333, "ALTI": 286, "MIN_DATE": "1993-02-01", "MAX_DATE": "1994-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.583333, 48.716667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54463001, "NOM_USUEL": "TOUL - ROSIERES", "LAT": 48.783333, "LON": 5.976667, "ALTI": 285, "MIN_DATE": "1968-03-01", "MAX_DATE": "1998-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.976667, 48.783333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54463002, "NOM_USUEL": "ROSIERES-EN-HAYE", "LAT": 48.681667, "LON": 5.886667, "ALTI": 210, "MIN_DATE": "1996-12-17", "MAX_DATE": "1997-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.886667, 48.681667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54471001, "NOM_USUEL": "ST BOINGT - RM", "LAT": 48.43, "LON": 6.435, "ALTI": 273, "MIN_DATE": "1974-07-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.435, 48.43 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54481001, "NOM_USUEL": "ST MAURICE", "LAT": 48.514833, "LON": 6.845667, "ALTI": 305, "MIN_DATE": "2002-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.845667, 48.514833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54483003, "NOM_USUEL": "ST NICOLAS-DE-PORT", "LAT": 48.6215, "LON": 6.289333, "ALTI": 248, "MIN_DATE": "2001-06-01", "MAX_DATE": "2010-09-15" }, "geometry": { "type": "Point", "coordinates": [ 6.289333, 48.6215 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54488001, "NOM_USUEL": "ST SAUVEUR", "LAT": 48.533333, "LON": 6.983333, "ALTI": 440, "MIN_DATE": "1967-05-01", "MAX_DATE": "1997-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.983333, 48.533333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54525001, "NOM_USUEL": "TIERCELET", "LAT": 49.466667, "LON": 5.883333, "ALTI": 408, "MIN_DATE": "1986-06-01", "MAX_DATE": "1988-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.883333, 49.466667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54549001, "NOM_USUEL": "VARANGEVILLE RM", "LAT": 48.636667, "LON": 6.321667, "ALTI": 207, "MIN_DATE": "1970-06-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.321667, 48.636667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54557001, "NOM_USUEL": "VELAINE-HAYE", "LAT": 48.698333, "LON": 6.063333, "ALTI": 343, "MIN_DATE": "1971-06-01", "MAX_DATE": "1997-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.063333, 48.698333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54580001, "NOM_USUEL": "VILLERUPT", "LAT": 49.451833, "LON": 5.9225, "ALTI": 433, "MIN_DATE": "1980-07-01", "MAX_DATE": "1984-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.9225, 49.451833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 54582001, "NOM_USUEL": "VILLETTE", "LAT": 49.482167, "LON": 5.578167, "ALTI": 345, "MIN_DATE": "1997-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.578167, 49.482167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45030001, "NOM_USUEL": "BEAUNE-MARCILLY", "LAT": 48.068333, "LON": 2.43, "ALTI": 96, "MIN_DATE": "1877-01-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.43, 48.068333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45035001, "NOM_USUEL": "BOISCOMMUN", "LAT": 48.036667, "LON": 2.381667, "ALTI": 147, "MIN_DATE": "1937-06-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.381667, 48.036667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45053001, "NOM_USUEL": "BRIARE ECLUSE", "LAT": 47.638333, "LON": 2.735, "ALTI": 145, "MIN_DATE": "1921-01-01", "MAX_DATE": "1928-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.735, 47.638333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45055001, "NOM_USUEL": "ORLEANS", "LAT": 47.990667, "LON": 1.778167, "ALTI": 123, "MIN_DATE": "1937-10-12", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.778167, 47.990667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45069001, "NOM_USUEL": "CHAMBON-LA-F.", "LAT": 48.025167, "LON": 2.260333, "ALTI": 143, "MIN_DATE": "1937-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.260333, 48.025167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45070001, "NOM_USUEL": "CHAMPOULET", "LAT": 47.656667, "LON": 2.92, "ALTI": 193, "MIN_DATE": "1872-04-01", "MAX_DATE": "1954-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.92, 47.656667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45082001, "NOM_USUEL": "CHATEAUNEUF", "LAT": 47.865, "LON": 2.221667, "ALTI": 114, "MIN_DATE": "1872-02-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.221667, 47.865 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45083001, "NOM_USUEL": "CHATEAURENARD", "LAT": 47.933333, "LON": 2.928333, "ALTI": 105, "MIN_DATE": "1872-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.928333, 47.933333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45085001, "NOM_USUEL": "CHATILLON-COL.", "LAT": 47.826, "LON": 2.848333, "ALTI": 140, "MIN_DATE": "1921-01-01", "MAX_DATE": "2022-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.848333, 47.826 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45087003, "NOM_USUEL": "CHATILLON - BG", "LAT": 47.591667, "LON": 2.753333, "ALTI": 136, "MIN_DATE": "1932-01-01", "MAX_DATE": "1932-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.753333, 47.591667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45101001, "NOM_USUEL": "COMBREUX", "LAT": 47.951167, "LON": 2.293667, "ALTI": 128, "MIN_DATE": "1871-12-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.293667, 47.951167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45107001, "NOM_USUEL": "COUDROY", "LAT": 47.908333, "LON": 2.466667, "ALTI": 110, "MIN_DATE": "1921-01-01", "MAX_DATE": "1971-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.466667, 47.908333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45108001, "NOM_USUEL": "COULLONS", "LAT": 47.611833, "LON": 2.493667, "ALTI": 156, "MIN_DATE": "1872-01-01", "MAX_DATE": "2017-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.493667, 47.611833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45134001, "NOM_USUEL": "EPIEDS-EN-B.", "LAT": 47.95, "LON": 1.616667, "ALTI": 145, "MIN_DATE": "1921-01-01", "MAX_DATE": "1924-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.616667, 47.95 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45146001, "NOM_USUEL": "FERTE-ST-A -BG1", "LAT": 47.718333, "LON": 1.938333, "ALTI": 102, "MIN_DATE": "1872-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.938333, 47.718333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45155001, "NOM_USUEL": "GIEN - ECL", "LAT": 47.69, "LON": 2.63, "ALTI": 130, "MIN_DATE": "1872-01-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.63, 47.69 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45155002, "NOM_USUEL": "GIEN - BG", "LAT": 47.69, "LON": 2.63, "ALTI": 131, "MIN_DATE": "1921-01-01", "MAX_DATE": "1922-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.63, 47.69 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45173001, "NOM_USUEL": "JARGEAU", "LAT": 47.866667, "LON": 2.121667, "ALTI": 104, "MIN_DATE": "1921-01-01", "MAX_DATE": "1928-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.121667, 47.866667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45188002, "NOM_USUEL": "LOURY - BG", "LAT": 48.0, "LON": 2.086667, "ALTI": 128, "MIN_DATE": "1921-01-01", "MAX_DATE": "1921-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.086667, 48.0 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45191001, "NOM_USUEL": "MALESHERBES", "LAT": 48.295, "LON": 2.411667, "ALTI": 120, "MIN_DATE": "1872-03-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.411667, 48.295 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45193001, "NOM_USUEL": "MARCILLY-EN-V.", "LAT": 47.769167, "LON": 2.021833, "ALTI": 127, "MIN_DATE": "1949-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.021833, 47.769167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45208001, "NOM_USUEL": "MONTARGIS", "LAT": 47.993833, "LON": 2.735333, "ALTI": 91, "MIN_DATE": "1872-01-01", "MAX_DATE": "2018-04-30" }, "geometry": { "type": "Point", "coordinates": [ 2.735333, 47.993833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45208002, "NOM_USUEL": "MONTARGIS - EC", "LAT": 47.963333, "LON": 2.726667, "ALTI": 90, "MIN_DATE": "1935-01-01", "MAX_DATE": "1957-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.726667, 47.963333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45213001, "NOM_USUEL": "MONTEREAU", "LAT": 47.856667, "LON": 2.573333, "ALTI": 132, "MIN_DATE": "1921-01-01", "MAX_DATE": "1928-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.573333, 47.856667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45224001, "NOM_USUEL": "NEUVILLE-AUX-B.", "LAT": 48.068333, "LON": 2.053333, "ALTI": 135, "MIN_DATE": "1872-03-01", "MAX_DATE": "1929-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.053333, 48.068333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45229001, "NOM_USUEL": "NOGENT-SUR-V.", "LAT": 47.834833, "LON": 2.757667, "ALTI": 145, "MIN_DATE": "1873-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.757667, 47.834833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45234002, "NOM_USUEL": "ORLEANS - EN", "LAT": 47.901167, "LON": 1.928167, "ALTI": 105, "MIN_DATE": "1872-05-01", "MAX_DATE": "1939-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.928167, 47.901167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45234004, "NOM_USUEL": "ORLEANS - PC", "LAT": 47.903333, "LON": 1.906667, "ALTI": 104, "MIN_DATE": "1872-01-01", "MAX_DATE": "1931-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.906667, 47.903333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45240001, "NOM_USUEL": "OUTARVILLE", "LAT": 48.21, "LON": 2.02, "ALTI": 130, "MIN_DATE": "1872-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.02, 48.21 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45248002, "NOM_USUEL": "PATAY - BG", "LAT": 48.048333, "LON": 1.695, "ALTI": 122, "MIN_DATE": "1872-01-01", "MAX_DATE": "1879-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.695, 48.048333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45252001, "NOM_USUEL": "PITHIVIERS", "LAT": 48.173333, "LON": 2.255, "ALTI": 116, "MIN_DATE": "1872-03-01", "MAX_DATE": "1925-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.255, 48.173333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45253001, "NOM_USUEL": "PITHIVIERS-LE-V", "LAT": 48.166333, "LON": 2.228333, "ALTI": 120, "MIN_DATE": "1933-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.228333, 48.166333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45254001, "NOM_USUEL": "POILLY-LES-GIEN", "LAT": 47.676667, "LON": 2.596667, "ALTI": 143, "MIN_DATE": "1932-01-01", "MAX_DATE": "1960-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.596667, 47.676667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45269001, "NOM_USUEL": "ST-AY", "LAT": 47.858333, "LON": 1.753333, "ALTI": 100, "MIN_DATE": "1921-01-01", "MAX_DATE": "1926-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.753333, 47.858333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45277001, "NOM_USUEL": "ST-FLORENT", "LAT": 47.69, "LON": 2.475, "ALTI": 146, "MIN_DATE": "1949-08-07", "MAX_DATE": "1952-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.475, 47.69 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45302001, "NOM_USUEL": "ORLEANS - SARAN", "LAT": 47.941667, "LON": 1.891667, "ALTI": 121, "MIN_DATE": "1921-01-01", "MAX_DATE": "1946-03-15" }, "geometry": { "type": "Point", "coordinates": [ 1.891667, 47.941667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45309001, "NOM_USUEL": "SENNELY", "LAT": 47.68, "LON": 2.148333, "ALTI": 125, "MIN_DATE": "1921-01-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.148333, 47.68 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45324001, "NOM_USUEL": "TIGY", "LAT": 47.795, "LON": 2.198333, "ALTI": 110, "MIN_DATE": "1921-01-01", "MAX_DATE": "1928-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.198333, 47.795 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45334001, "NOM_USUEL": "VIEILLESMAISONS", "LAT": 47.885, "LON": 2.445, "ALTI": 117, "MIN_DATE": "1921-01-01", "MAX_DATE": "1928-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.445, 47.885 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45004001, "NOM_USUEL": "AMILLY", "LAT": 47.962167, "LON": 2.728, "ALTI": 91, "MIN_DATE": "1965-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.728, 47.962167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45008001, "NOM_USUEL": "ARTENAY SUCRERIE", "LAT": 48.081667, "LON": 1.88, "ALTI": 125, "MIN_DATE": "1955-08-01", "MAX_DATE": "1957-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.88, 48.081667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45019001, "NOM_USUEL": "BACCON", "LAT": 47.889667, "LON": 1.626833, "ALTI": 120, "MIN_DATE": "1973-09-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.626833, 47.889667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45024001, "NOM_USUEL": "BAULE", "LAT": 47.8075, "LON": 1.674667, "ALTI": 100, "MIN_DATE": "1955-08-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.674667, 47.8075 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45024003, "NOM_USUEL": "BAULE - LE VAL", "LAT": 47.81, "LON": 1.67, "ALTI": 110, "MIN_DATE": "1956-04-01", "MAX_DATE": "1956-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.67, 47.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45030002, "NOM_USUEL": "BEAUNE-LA-ROL.", "LAT": 48.066833, "LON": 2.422333, "ALTI": 106, "MIN_DATE": "1977-12-01", "MAX_DATE": "2019-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.422333, 48.066833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45033001, "NOM_USUEL": "BOESSE", "LAT": 48.15, "LON": 2.446667, "ALTI": 119, "MIN_DATE": "1974-01-01", "MAX_DATE": "1977-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.446667, 48.15 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45040001, "NOM_USUEL": "BONNY-SUR-LOIRE", "LAT": 47.567667, "LON": 2.853, "ALTI": 180, "MIN_DATE": "1979-11-01", "MAX_DATE": "2022-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.853, 47.567667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45040002, "NOM_USUEL": "BONNY-SUR-L.", "LAT": 47.558333, "LON": 2.838333, "ALTI": 120, "MIN_DATE": "1955-08-01", "MAX_DATE": "1979-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.838333, 47.558333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45061001, "NOM_USUEL": "CEPOY", "LAT": 48.044667, "LON": 2.730833, "ALTI": 97, "MIN_DATE": "1993-01-01", "MAX_DATE": "2015-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.730833, 48.044667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45087001, "NOM_USUEL": "CHATILLON -CHAN", "LAT": 47.591667, "LON": 2.753333, "ALTI": 187, "MIN_DATE": "1974-10-01", "MAX_DATE": "1985-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.753333, 47.591667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45087002, "NOM_USUEL": "CHATILLON -QUET", "LAT": 47.591667, "LON": 2.753333, "ALTI": 250, "MIN_DATE": "1982-03-01", "MAX_DATE": "1983-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.753333, 47.591667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45087004, "NOM_USUEL": "CHATILLON/LOIRE", "LAT": 47.562, "LON": 2.716, "ALTI": 195, "MIN_DATE": "1983-10-01", "MAX_DATE": "2015-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.716, 47.562 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45089001, "NOM_USUEL": "CHECY", "LAT": 47.902667, "LON": 2.007833, "ALTI": 111, "MIN_DATE": "1952-03-01", "MAX_DATE": "2022-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.007833, 47.902667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45095001, "NOM_USUEL": "CHILLEURS-AUX-B", "LAT": 48.064, "LON": 2.121167, "ALTI": 120, "MIN_DATE": "1971-12-01", "MAX_DATE": "2018-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.121167, 48.064 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45096001, "NOM_USUEL": "LES CHOUX", "LAT": 47.799833, "LON": 2.676, "ALTI": 148, "MIN_DATE": "1974-05-01", "MAX_DATE": "2019-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.676, 47.799833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45097001, "NOM_USUEL": "CHUELLES", "LAT": 47.977333, "LON": 2.998, "ALTI": 172, "MIN_DATE": "1971-05-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.998, 47.977333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45123001, "NOM_USUEL": "DARVOY", "LAT": 47.863333, "LON": 2.098333, "ALTI": 101, "MIN_DATE": "1963-02-01", "MAX_DATE": "1967-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.098333, 47.863333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45129001, "NOM_USUEL": "DOUCHY", "LAT": 47.951333, "LON": 3.043167, "ALTI": 130, "MIN_DATE": "1974-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.043167, 47.951333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45136001, "NOM_USUEL": "ERVAUVILLE", "LAT": 48.076667, "LON": 2.991667, "ALTI": 159, "MIN_DATE": "1971-05-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.991667, 48.076667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45138001, "NOM_USUEL": "ESCRIGNELLES", "LAT": 47.716667, "LON": 2.84, "ALTI": 167, "MIN_DATE": "1970-06-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.84, 47.716667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45145001, "NOM_USUEL": "FERRIERES", "LAT": 48.113167, "LON": 2.857833, "ALTI": 107, "MIN_DATE": "1974-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.857833, 48.113167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45146002, "NOM_USUEL": "FERTE-ST-A -BG2", "LAT": 47.718333, "LON": 1.938333, "ALTI": 102, "MIN_DATE": "1982-06-01", "MAX_DATE": "1984-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.938333, 47.718333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45146003, "NOM_USUEL": "FERTE-ST-AUBIN", "LAT": 47.72, "LON": 1.935667, "ALTI": 107, "MIN_DATE": "1988-03-01", "MAX_DATE": "2020-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.935667, 47.72 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45147001, "NOM_USUEL": "FLEURY-LES-AUB.", "LAT": 47.925667, "LON": 1.914333, "ALTI": 119, "MIN_DATE": "1955-08-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.914333, 47.925667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45155003, "NOM_USUEL": "GIEN -MONTOIRES", "LAT": 47.705, "LON": 2.621667, "ALTI": 158, "MIN_DATE": "1974-05-01", "MAX_DATE": "1991-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.621667, 47.705 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45155004, "NOM_USUEL": "GIEN", "LAT": 47.6765, "LON": 2.635667, "ALTI": 126, "MIN_DATE": "1991-10-01", "MAX_DATE": "2015-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.635667, 47.6765 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45156001, "NOM_USUEL": "GIROLLES", "LAT": 48.056667, "LON": 2.703333, "ALTI": 99, "MIN_DATE": "1970-07-24", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.703333, 48.056667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45160001, "NOM_USUEL": "GRENEVILLE", "LAT": 48.184, "LON": 2.110167, "ALTI": 127, "MIN_DATE": "1971-12-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.110167, 48.184 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45170001, "NOM_USUEL": "INTVILLE", "LAT": 48.2605, "LON": 2.212333, "ALTI": 125, "MIN_DATE": "1970-05-01", "MAX_DATE": "2022-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.212333, 48.2605 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45178001, "NOM_USUEL": "LADON", "LAT": 48.009667, "LON": 2.546167, "ALTI": 99, "MIN_DATE": "1974-03-01", "MAX_DATE": "2022-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.546167, 48.009667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45182001, "NOM_USUEL": "LIGNY-LE-R.", "LAT": 47.684667, "LON": 1.782833, "ALTI": 96, "MIN_DATE": "1973-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.782833, 47.684667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45187001, "NOM_USUEL": "LORRIS", "LAT": 47.881167, "LON": 2.505167, "ALTI": 125, "MIN_DATE": "1971-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.505167, 47.881167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45188001, "NOM_USUEL": "LOURY", "LAT": 48.002333, "LON": 2.071833, "ALTI": 130, "MIN_DATE": "1971-12-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.071833, 48.002333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45192001, "NOM_USUEL": "MANCHECOURT", "LAT": 48.237167, "LON": 2.343833, "ALTI": 133, "MIN_DATE": "1971-12-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.343833, 48.237167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45199001, "NOM_USUEL": "MELLEROY", "LAT": 47.879667, "LON": 2.986, "ALTI": 166, "MIN_DATE": "1970-02-18", "MAX_DATE": "2016-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.986, 47.879667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45199002, "NOM_USUEL": "MELLEROY_ANCIENNE_SAPC", "LAT": 47.88, "LON": 2.986667, "ALTI": 165, "MIN_DATE": "2008-03-26", "MAX_DATE": "2017-01-24" }, "geometry": { "type": "Point", "coordinates": [ 2.986667, 47.88 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45199003, "NOM_USUEL": "MELLEROY_SAPC", "LAT": 47.897333, "LON": 2.952, "ALTI": 165, "MIN_DATE": "2017-06-15", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.952, 47.897333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45200001, "NOM_USUEL": "MENESTREAU-EN-V", "LAT": 47.726167, "LON": 2.013667, "ALTI": 126, "MIN_DATE": "1987-07-01", "MAX_DATE": "2016-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.013667, 47.726167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45225001, "NOM_USUEL": "LA NEUVILLE/ES.", "LAT": 48.188, "LON": 2.375667, "ALTI": 92, "MIN_DATE": "1996-09-01", "MAX_DATE": "2019-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.375667, 48.188 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45232001, "NOM_USUEL": "OLIVET", "LAT": 47.863333, "LON": 1.9, "ALTI": 115, "MIN_DATE": "1955-08-01", "MAX_DATE": "1957-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.9, 47.863333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45234001, "NOM_USUEL": "ORLEANS - LA S.", "LAT": 47.8535, "LON": 1.930167, "ALTI": 93, "MIN_DATE": "1968-01-01", "MAX_DATE": "2022-02-28" }, "geometry": { "type": "Point", "coordinates": [ 1.930167, 47.8535 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45234003, "NOM_USUEL": "ORLEANS - GARE", "LAT": 47.903333, "LON": 1.906667, "ALTI": 120, "MIN_DATE": "1955-08-01", "MAX_DATE": "1957-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.906667, 47.903333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45234005, "NOM_USUEL": "ORLEANS - ST-M.", "LAT": 47.903333, "LON": 1.906667, "ALTI": 116, "MIN_DATE": "1955-12-01", "MAX_DATE": "1956-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.906667, 47.903333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45234006, "NOM_USUEL": "ORLEANS - ST-J.", "LAT": 47.878333, "LON": 1.92, "ALTI": 93, "MIN_DATE": "1985-06-01", "MAX_DATE": "1997-02-28" }, "geometry": { "type": "Point", "coordinates": [ 1.92, 47.878333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45239001, "NOM_USUEL": "OUSSOY-EN-G.", "LAT": 47.886667, "LON": 2.648333, "ALTI": 114, "MIN_DATE": "1971-05-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.648333, 47.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45245001, "NOM_USUEL": "OUZOUER_SUR_TREZEE", "LAT": 47.672, "LON": 2.809833, "ALTI": 150, "MIN_DATE": "1974-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.809833, 47.672 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45248001, "NOM_USUEL": "PATAY", "LAT": 48.041, "LON": 1.700833, "ALTI": 120, "MIN_DATE": "1973-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.700833, 48.041 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45270001, "NOM_USUEL": "ST-BENOIT - BG", "LAT": 47.81, "LON": 2.306667, "ALTI": 110, "MIN_DATE": "1956-06-01", "MAX_DATE": "1985-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.306667, 47.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45270002, "NOM_USUEL": "ST-BENOIT/LOIRE", "LAT": 47.808, "LON": 2.305667, "ALTI": 112, "MIN_DATE": "1974-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.305667, 47.808 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45282001, "NOM_USUEL": "ST-HILAIRE-ST-M", "LAT": 47.867, "LON": 1.8445, "ALTI": 100, "MIN_DATE": "1997-04-01", "MAX_DATE": "2017-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.8445, 47.867 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45311001, "NOM_USUEL": "SIGLOY - BG", "LAT": 47.833333, "LON": 2.225, "ALTI": 107, "MIN_DATE": "1973-04-01", "MAX_DATE": "1981-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.225, 47.833333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45330001, "NOM_USUEL": "TRINAY", "LAT": 48.0865, "LON": 1.9405, "ALTI": 123, "MIN_DATE": "1970-05-01", "MAX_DATE": "2022-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.9405, 48.0865 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45340001, "NOM_USUEL": "VILLEMURLIN-PEUPLIERS", "LAT": 47.689, "LON": 2.326667, "ALTI": 137, "MIN_DATE": "1952-11-01", "MAX_DATE": "2011-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.326667, 47.689 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 45340002, "NOM_USUEL": "VILLEMURLIN", "LAT": 47.6935, "LON": 2.366167, "ALTI": 144, "MIN_DATE": "2005-05-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.366167, 47.6935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1004003, "NOM_USUEL": "AMBERIEU", "LAT": 45.955, "LON": 5.348333, "ALTI": 249, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.348333, 45.955 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1034001, "NOM_USUEL": "BELLEY MAN", "LAT": 45.755, "LON": 5.686667, "ALTI": 277, "MIN_DATE": "1877-01-01", "MAX_DATE": "2008-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.686667, 45.755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1034002, "NOM_USUEL": "BELLEY", "LAT": 45.758333, "LON": 5.688333, "ALTI": 287, "MIN_DATE": "1925-10-01", "MAX_DATE": "1938-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.688333, 45.758333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1053001, "NOM_USUEL": "BOURG EN BRESSE", "LAT": 46.206667, "LON": 5.221667, "ALTI": 240, "MIN_DATE": "1854-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.221667, 46.206667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1074001, "NOM_USUEL": "CHALAMONT", "LAT": 45.996667, "LON": 5.171667, "ALTI": 239, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.171667, 45.996667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1085001, "NOM_USUEL": "LA CHAPELLE", "LAT": 46.07, "LON": 5.025, "ALTI": 266, "MIN_DATE": "1947-04-01", "MAX_DATE": "1966-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.025, 46.07 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1089001, "NOM_USUEL": "AMBERIEU", "LAT": 45.9765, "LON": 5.329333, "ALTI": 250, "MIN_DATE": "1934-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.329333, 45.9765 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1143001, "NOM_USUEL": "DIVONNE", "LAT": 46.376667, "LON": 6.156667, "ALTI": 488, "MIN_DATE": "1946-04-01", "MAX_DATE": "2003-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.156667, 46.376667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1148001, "NOM_USUEL": "DORTAN", "LAT": 46.321667, "LON": 5.658333, "ALTI": 308, "MIN_DATE": "1948-10-01", "MAX_DATE": "1952-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.658333, 46.321667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1157001, "NOM_USUEL": "FAREINS", "LAT": 46.02, "LON": 4.76, "ALTI": 220, "MIN_DATE": "1947-04-01", "MAX_DATE": "1959-01-31" }, "geometry": { "type": "Point", "coordinates": [ 4.76, 46.02 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1173002, "NOM_USUEL": "GEX", "LAT": 46.37, "LON": 6.018333, "ALTI": 1323, "MIN_DATE": "1919-01-01", "MAX_DATE": "1936-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.018333, 46.37 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1173011, "NOM_USUEL": "GEX", "LAT": 46.333333, "LON": 6.058333, "ALTI": 612, "MIN_DATE": "1877-01-01", "MAX_DATE": "1908-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.058333, 46.333333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1185002, "NOM_USUEL": "HAUTEVILLE", "LAT": 45.978333, "LON": 5.605, "ALTI": 801, "MIN_DATE": "1934-01-01", "MAX_DATE": "1938-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.605, 45.978333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1185005, "NOM_USUEL": "LACOUX", "LAT": 45.978333, "LON": 5.596667, "ALTI": 800, "MIN_DATE": "1946-01-01", "MAX_DATE": "1962-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.596667, 45.978333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1192001, "NOM_USUEL": "IZERNORE", "LAT": 46.225, "LON": 5.541667, "ALTI": 430, "MIN_DATE": "1949-05-01", "MAX_DATE": "1992-09-30" }, "geometry": { "type": "Point", "coordinates": [ 5.541667, 46.225 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1216001, "NOM_USUEL": "LHUIS", "LAT": 45.733333, "LON": 5.533333, "ALTI": 225, "MIN_DATE": "1890-01-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.533333, 45.733333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1247003, "NOM_USUEL": "MIJOUX", "LAT": 46.378833, "LON": 6.019333, "ALTI": 1002, "MIN_DATE": "1934-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.019333, 46.378833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1250001, "NOM_USUEL": "MISERIEUX", "LAT": 45.981667, "LON": 4.801667, "ALTI": 270, "MIN_DATE": "1929-03-01", "MAX_DATE": "1996-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.801667, 45.981667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1255001, "NOM_USUEL": "MONTAGNIEU", "LAT": 45.793333, "LON": 5.47, "ALTI": 220, "MIN_DATE": "1949-04-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.47, 45.793333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1262001, "NOM_USUEL": "MONTLUEL", "LAT": 45.925, "LON": 5.025, "ALTI": 195, "MIN_DATE": "1929-01-01", "MAX_DATE": "1983-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.025, 45.925 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1262002, "NOM_USUEL": "MONTLUEL", "LAT": 45.851667, "LON": 5.056667, "ALTI": 284, "MIN_DATE": "1854-12-01", "MAX_DATE": "1857-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.056667, 45.851667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1265001, "NOM_USUEL": "MONTREAL", "LAT": 46.186667, "LON": 5.566667, "ALTI": 495, "MIN_DATE": "1934-01-01", "MAX_DATE": "1956-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.566667, 46.186667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1267001, "NOM_USUEL": "MORNAY", "LAT": 46.195, "LON": 5.516667, "ALTI": 450, "MIN_DATE": "1947-01-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.516667, 46.195 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1269001, "NOM_USUEL": "NANTUA", "LAT": 46.148167, "LON": 5.607333, "ALTI": 483, "MIN_DATE": "1877-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.607333, 46.148167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1273001, "NOM_USUEL": "NEUVILLE", "LAT": 46.083167, "LON": 5.373833, "ALTI": 291, "MIN_DATE": "1890-02-01", "MAX_DATE": "2019-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.373833, 46.083167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1304001, "NOM_USUEL": "PONT-D AIN", "LAT": 46.05, "LON": 5.335, "ALTI": 242, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.335, 46.05 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1305001, "NOM_USUEL": "PONT-DE-VAUX", "LAT": 46.433333, "LON": 4.936667, "ALTI": 181, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.936667, 46.433333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1364001, "NOM_USUEL": "ST-JEAN/REYSSOU", "LAT": 46.396667, "LON": 5.061667, "ALTI": 208, "MIN_DATE": "1947-11-01", "MAX_DATE": "1957-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.061667, 46.396667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1367001, "NOM_USUEL": "ST-JULIEN/REYSS", "LAT": 46.383333, "LON": 5.116667, "ALTI": 189, "MIN_DATE": "1928-03-01", "MAX_DATE": "1982-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.116667, 46.383333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1386001, "NOM_USUEL": "ST-SORLIN", "LAT": 45.883333, "LON": 5.373333, "ALTI": 200, "MIN_DATE": "1949-11-01", "MAX_DATE": "1955-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.373333, 45.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1416001, "NOM_USUEL": "TENAY", "LAT": 45.923333, "LON": 5.506667, "ALTI": 390, "MIN_DATE": "1933-07-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.506667, 45.923333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1420001, "NOM_USUEL": "THOISSEY", "LAT": 46.173333, "LON": 4.801667, "ALTI": 178, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.801667, 46.173333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1427001, "NOM_USUEL": "TREVOUX", "LAT": 45.891667, "LON": 4.773333, "ALTI": 188, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.773333, 45.891667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1457001, "NOM_USUEL": "VONNAS", "LAT": 46.218333, "LON": 4.99, "ALTI": 190, "MIN_DATE": "1947-04-01", "MAX_DATE": "1992-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.99, 46.218333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1010001, "NOM_USUEL": "ANGLEFORT", "LAT": 45.9, "LON": 5.766667, "ALTI": 280, "MIN_DATE": "1950-01-01", "MAX_DATE": "1985-07-31" }, "geometry": { "type": "Point", "coordinates": [ 5.766667, 45.9 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1014001, "NOM_USUEL": "ARBENT", "LAT": 46.266667, "LON": 5.65, "ALTI": 535, "MIN_DATE": "1969-11-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.65, 46.266667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1014002, "NOM_USUEL": "ARBENT", "LAT": 46.278167, "LON": 5.669, "ALTI": 534, "MIN_DATE": "2004-03-17", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.669, 46.278167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1025001, "NOM_USUEL": "BAGE", "LAT": 46.325167, "LON": 4.953167, "ALTI": 200, "MIN_DATE": "1992-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.953167, 46.325167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1027001, "NOM_USUEL": "BALAN", "LAT": 45.833333, "LON": 5.083333, "ALTI": 197, "MIN_DATE": "1968-04-01", "MAX_DATE": "1991-05-31" }, "geometry": { "type": "Point", "coordinates": [ 5.083333, 45.833333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1027002, "NOM_USUEL": "BALAN", "LAT": 45.832833, "LON": 5.086, "ALTI": 184, "MIN_DATE": "2002-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.086, 45.832833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1027003, "NOM_USUEL": "BALAN_AERO", "LAT": 45.833, "LON": 5.106667, "ALTI": 196, "MIN_DATE": "2014-09-05", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.106667, 45.833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1028001, "NOM_USUEL": "BANEINS", "LAT": 46.122, "LON": 4.9045, "ALTI": 243, "MIN_DATE": "1978-09-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.9045, 46.122 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1029001, "NOM_USUEL": "BEAUPONT", "LAT": 46.411667, "LON": 5.263333, "ALTI": 210, "MIN_DATE": "1975-01-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.263333, 46.411667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1033001, "NOM_USUEL": "BELLEGARDE MAN", "LAT": 46.103333, "LON": 5.846667, "ALTI": 500, "MIN_DATE": "1979-09-01", "MAX_DATE": "2006-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.846667, 46.103333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1033002, "NOM_USUEL": "BELLEGARDE", "LAT": 46.0865, "LON": 5.814167, "ALTI": 350, "MIN_DATE": "1994-04-01", "MAX_DATE": "2023-12-10" }, "geometry": { "type": "Point", "coordinates": [ 5.814167, 46.0865 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1034004, "NOM_USUEL": "BELLEY", "LAT": 45.769333, "LON": 5.688, "ALTI": 330, "MIN_DATE": "2001-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.688, 45.769333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1037001, "NOM_USUEL": "BENONCES", "LAT": 45.862333, "LON": 5.484167, "ALTI": 944, "MIN_DATE": "1976-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.484167, 45.862333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1043001, "NOM_USUEL": "BEYNOST", "LAT": 45.837333, "LON": 4.990667, "ALTI": 220, "MIN_DATE": "1996-08-01", "MAX_DATE": "2017-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.990667, 45.837333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1053003, "NOM_USUEL": "BOURG EN BRESSE", "LAT": 46.215, "LON": 5.258333, "ALTI": 250, "MIN_DATE": "1979-09-01", "MAX_DATE": "1995-01-31" }, "geometry": { "type": "Point", "coordinates": [ 5.258333, 46.215 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1059001, "NOM_USUEL": "BRENAZ", "LAT": 45.948333, "LON": 5.721667, "ALTI": 695, "MIN_DATE": "1993-01-01", "MAX_DATE": "1998-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.721667, 45.948333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1064001, "NOM_USUEL": "VERIZIEU", "LAT": 45.777167, "LON": 5.487167, "ALTI": 281, "MIN_DATE": "2015-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.487167, 45.777167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1068001, "NOM_USUEL": "CERDON", "LAT": 46.082, "LON": 5.465167, "ALTI": 315, "MIN_DATE": "1983-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.465167, 46.082 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1071001, "NOM_USUEL": "CESSY", "LAT": 46.310333, "LON": 6.080333, "ALTI": 507, "MIN_DATE": "2002-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.080333, 46.310333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1072001, "NOM_USUEL": "CEYZERIAT_SAPC", "LAT": 46.204333, "LON": 5.287667, "ALTI": 260, "MIN_DATE": "1994-08-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.287667, 46.204333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1082001, "NOM_USUEL": "CHANAY", "LAT": 46.003333, "LON": 5.788333, "ALTI": 480, "MIN_DATE": "1964-12-01", "MAX_DATE": "1996-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.788333, 46.003333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1092001, "NOM_USUEL": "CHATILLON", "LAT": 45.969, "LON": 5.251, "ALTI": 257, "MIN_DATE": "1959-01-01", "MAX_DATE": "2017-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.251, 45.969 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1104001, "NOM_USUEL": "CHEZERY", "LAT": 46.24, "LON": 5.896667, "ALTI": 700, "MIN_DATE": "1971-06-01", "MAX_DATE": "2000-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.896667, 46.24 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1105001, "NOM_USUEL": "CIVRIEUX", "LAT": 45.911667, "LON": 4.891167, "ALTI": 291, "MIN_DATE": "1979-10-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.891167, 45.911667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1115001, "NOM_USUEL": "CONFRANCON", "LAT": 46.253333, "LON": 5.06, "ALTI": 200, "MIN_DATE": "1974-06-01", "MAX_DATE": "1994-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.06, 46.253333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1118001, "NOM_USUEL": "CORBONOD", "LAT": 45.968333, "LON": 5.808333, "ALTI": 330, "MIN_DATE": "1973-01-01", "MAX_DATE": "1977-12-30" }, "geometry": { "type": "Point", "coordinates": [ 5.808333, 45.968333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1128001, "NOM_USUEL": "COURTES", "LAT": 46.451667, "LON": 5.103333, "ALTI": 220, "MIN_DATE": "1982-06-01", "MAX_DATE": "2009-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.103333, 46.451667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1143002, "NOM_USUEL": "DIVONNE ZA", "LAT": 46.3415, "LON": 6.139667, "ALTI": 467, "MIN_DATE": "2003-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.139667, 46.3415 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1160001, "NOM_USUEL": "FERNEY-VOLTAIRE", "LAT": 46.255, "LON": 6.108333, "ALTI": 435, "MIN_DATE": "1960-10-01", "MAX_DATE": "1974-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.108333, 46.255 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1173001, "NOM_USUEL": "GEX", "LAT": 46.34, "LON": 6.063167, "ALTI": 612, "MIN_DATE": "1975-01-01", "MAX_DATE": "2013-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.063167, 46.34 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1174001, "NOM_USUEL": "GIRON", "LAT": 46.23, "LON": 5.7725, "ALTI": 1015, "MIN_DATE": "1959-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.7725, 46.23 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1175001, "NOM_USUEL": "GORREVOD", "LAT": 46.418333, "LON": 4.938333, "ALTI": 195, "MIN_DATE": "1975-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.938333, 46.418333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1176001, "NOM_USUEL": "GD ABERGEMENT", "LAT": 46.035, "LON": 5.671667, "ALTI": 810, "MIN_DATE": "1964-03-01", "MAX_DATE": "1971-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.671667, 46.035 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1184001, "NOM_USUEL": "HAUTECOURT", "LAT": 46.1545, "LON": 5.404, "ALTI": 458, "MIN_DATE": "1967-01-16", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.404, 46.1545 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1185001, "NOM_USUEL": "HAUTEVILLE", "LAT": 45.966667, "LON": 5.6, "ALTI": 820, "MIN_DATE": "1963-05-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.6, 45.966667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1185006, "NOM_USUEL": "HAUTEVILLE_EDF_RIC-A2-DOUBLON", "LAT": 45.979667, "LON": 5.598167, "ALTI": 805, "MIN_DATE": "1989-09-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.598167, 45.979667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1187001, "NOM_USUEL": "LES PLANS D'HOTONNES", "LAT": 46.0365, "LON": 5.699833, "ALTI": 1048, "MIN_DATE": "2009-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.699833, 46.0365 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1190001, "NOM_USUEL": "INNIMOND", "LAT": 45.7825, "LON": 5.572833, "ALTI": 880, "MIN_DATE": "2002-05-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.572833, 45.7825 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1200001, "NOM_USUEL": "LABALME", "LAT": 46.095, "LON": 5.483333, "ALTI": 596, "MIN_DATE": "1957-01-01", "MAX_DATE": "1982-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.483333, 46.095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1200002, "NOM_USUEL": "LA BALME SUR CERDON_SAPC", "LAT": 46.09, "LON": 5.482, "ALTI": 596, "MIN_DATE": "2004-12-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.482, 46.09 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1204001, "NOM_USUEL": "LALLEYRIAT", "LAT": 46.152833, "LON": 5.717167, "ALTI": 850, "MIN_DATE": "1981-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.717167, 46.152833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1204002, "NOM_USUEL": "BURL", "LAT": 46.166667, "LON": 5.706667, "ALTI": 530, "MIN_DATE": "1998-11-01", "MAX_DATE": "2004-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.706667, 46.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1209001, "NOM_USUEL": "LEAZ", "LAT": 46.098333, "LON": 5.881667, "ALTI": 480, "MIN_DATE": "1975-01-01", "MAX_DATE": "1977-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.881667, 46.098333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1210001, "NOM_USUEL": "LELEX", "LAT": 46.301667, "LON": 5.941667, "ALTI": 930, "MIN_DATE": "1982-12-01", "MAX_DATE": "1986-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.941667, 46.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1210002, "NOM_USUEL": "LELEX", "LAT": 46.303333, "LON": 5.943333, "ALTI": 875, "MIN_DATE": "1990-02-01", "MAX_DATE": "1996-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.943333, 46.303333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1224001, "NOM_USUEL": "LOYETTES", "LAT": 45.8, "LON": 5.233333, "ALTI": 194, "MIN_DATE": "1977-12-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.233333, 45.8 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1224002, "NOM_USUEL": "LOYETTES", "LAT": 45.8065, "LON": 5.238333, "ALTI": 198, "MIN_DATE": "1990-01-01", "MAX_DATE": "2019-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.238333, 45.8065 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1231001, "NOM_USUEL": "MANZIAT", "LAT": 46.36, "LON": 4.906667, "ALTI": 210, "MIN_DATE": "1977-11-01", "MAX_DATE": "1979-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.906667, 46.36 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1235001, "NOM_USUEL": "MARLIEUX", "LAT": 46.0385, "LON": 5.044333, "ALTI": 280, "MIN_DATE": "1959-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.044333, 46.0385 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1235002, "NOM_USUEL": "MARLIEUX", "LAT": 46.046667, "LON": 5.073333, "ALTI": 273, "MIN_DATE": "1999-08-01", "MAX_DATE": "2018-09-23" }, "geometry": { "type": "Point", "coordinates": [ 5.073333, 46.046667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1243001, "NOM_USUEL": "MESSIMY", "LAT": 46.047167, "LON": 4.757667, "ALTI": 175, "MIN_DATE": "1959-02-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.757667, 46.047167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1247002, "NOM_USUEL": "MIJOUX", "LAT": 46.366667, "LON": 5.993333, "ALTI": 1500, "MIN_DATE": "1959-03-01", "MAX_DATE": "1960-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.993333, 46.366667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1247004, "NOM_USUEL": "MIJOUX", "LAT": 46.378333, "LON": 6.021667, "ALTI": 1015, "MIN_DATE": "1995-01-01", "MAX_DATE": "1996-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.021667, 46.378333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1247005, "NOM_USUEL": "MIJ LELEX", "LAT": 46.321667, "LON": 5.951667, "ALTI": 890, "MIN_DATE": "1997-02-01", "MAX_DATE": "1997-04-30" }, "geometry": { "type": "Point", "coordinates": [ 5.951667, 46.321667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1255002, "NOM_USUEL": "MONTAGNIEU", "LAT": 45.794333, "LON": 5.469333, "ALTI": 336, "MIN_DATE": "1990-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.469333, 45.794333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1262003, "NOM_USUEL": "MONTLUEL", "LAT": 45.9, "LON": 5.016667, "ALTI": 280, "MIN_DATE": "1983-09-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.016667, 45.9 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1262004, "NOM_USUEL": "MONTLUEL", "LAT": 45.907667, "LON": 5.017167, "ALTI": 275, "MIN_DATE": "1997-01-01", "MAX_DATE": "2020-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.017167, 45.907667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1276001, "NOM_USUEL": "NIEVROZ", "LAT": 45.816667, "LON": 5.07, "ALTI": 182, "MIN_DATE": "1997-01-01", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.07, 45.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1283001, "NOM_USUEL": "OYONNAX", "LAT": 46.271667, "LON": 5.661667, "ALTI": 535, "MIN_DATE": "1989-01-01", "MAX_DATE": "2006-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.661667, 46.271667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1301001, "NOM_USUEL": "POLLIAT", "LAT": 46.236667, "LON": 5.11, "ALTI": 201, "MIN_DATE": "1992-08-01", "MAX_DATE": "1996-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.11, 46.236667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1350001, "NOM_USUEL": "SAINT ETIENNE DU BOIS", "LAT": 46.296, "LON": 5.279667, "ALTI": 243, "MIN_DATE": "1998-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.279667, 46.296 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1367002, "NOM_USUEL": "SAINT JULIEN SUR REYSSOUZE", "LAT": 46.403167, "LON": 5.109833, "ALTI": 189, "MIN_DATE": "1990-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.109833, 46.403167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1374001, "NOM_USUEL": "ST MARTIN", "LAT": 46.101667, "LON": 5.328333, "ALTI": 380, "MIN_DATE": "1967-01-15", "MAX_DATE": "1996-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.328333, 46.101667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1374002, "NOM_USUEL": "SAINT MARTIN DU MONT", "LAT": 46.118333, "LON": 5.318833, "ALTI": 265, "MIN_DATE": "1997-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.318833, 46.118333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1384001, "NOM_USUEL": "SAINT RAMBERT EN BUGEY", "LAT": 45.931667, "LON": 5.426667, "ALTI": 285, "MIN_DATE": "1990-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.426667, 45.931667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1384003, "NOM_USUEL": "ST RAMBERT CG01", "LAT": 45.950333, "LON": 5.461, "ALTI": 296, "MIN_DATE": "2001-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.461, 45.950333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1391001, "NOM_USUEL": "SALAVRE", "LAT": 46.363833, "LON": 5.346667, "ALTI": 240, "MIN_DATE": "1956-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.346667, 46.363833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1407001, "NOM_USUEL": "SEYSSEL", "LAT": 45.953333, "LON": 5.824, "ALTI": 285, "MIN_DATE": "1986-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.824, 45.953333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1408001, "NOM_USUEL": "SIMANDRE", "LAT": 46.248333, "LON": 5.455, "ALTI": 400, "MIN_DATE": "1998-09-01", "MAX_DATE": "2001-06-30" }, "geometry": { "type": "Point", "coordinates": [ 5.455, 46.248333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1414001, "NOM_USUEL": "SUTRIEU", "LAT": 45.916167, "LON": 5.624667, "ALTI": 878, "MIN_DATE": "2002-09-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.624667, 45.916167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1419001, "NOM_USUEL": "THOIRY", "LAT": 46.241667, "LON": 5.968333, "ALTI": 605, "MIN_DATE": "1994-09-10", "MAX_DATE": "2002-08-31" }, "geometry": { "type": "Point", "coordinates": [ 5.968333, 46.241667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1426001, "NOM_USUEL": "TREFFORT", "LAT": 46.221667, "LON": 5.366667, "ALTI": 310, "MIN_DATE": "1959-01-01", "MAX_DATE": "1978-02-28" }, "geometry": { "type": "Point", "coordinates": [ 5.366667, 46.221667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1441001, "NOM_USUEL": "VIEU", "LAT": 46.088833, "LON": 5.540833, "ALTI": 615, "MIN_DATE": "1990-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.540833, 46.088833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1447001, "NOM_USUEL": "VILLEREVERSURE", "LAT": 46.183333, "LON": 5.378333, "ALTI": 299, "MIN_DATE": "1953-10-01", "MAX_DATE": "1977-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.378333, 46.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1452001, "NOM_USUEL": "VIRIEU-LE-GRAND", "LAT": 45.833333, "LON": 5.65, "ALTI": 284, "MIN_DATE": "1950-03-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.65, 45.833333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 1453001, "NOM_USUEL": "VIRIEU-LE-PETIT", "LAT": 45.906833, "LON": 5.718167, "ALTI": 603, "MIN_DATE": "1999-01-01", "MAX_DATE": "2018-03-31" }, "geometry": { "type": "Point", "coordinates": [ 5.718167, 45.906833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6003002, "NOM_USUEL": "ANDON DOMAINE DE THORENC", "LAT": 43.773333, "LON": 6.785, "ALTI": 1250, "MIN_DATE": "1931-01-01", "MAX_DATE": "1960-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.785, 43.773333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004002, "NOM_USUEL": "ANTIBES-GAROUPE", "LAT": 43.564667, "LON": 7.133, "ALTI": 75, "MIN_DATE": "1934-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.133, 43.564667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004006, "NOM_USUEL": "ANTIBES PHARE DE LA GAROUPE", "LAT": 43.58, "LON": 7.118333, "ALTI": 31, "MIN_DATE": "1948-01-01", "MAX_DATE": "1965-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.118333, 43.58 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004011, "NOM_USUEL": "ANTIBES VILLE", "LAT": 43.58, "LON": 7.118333, "ALTI": 85, "MIN_DATE": "1930-06-01", "MAX_DATE": "1931-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.118333, 43.58 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004014, "NOM_USUEL": "ANTIBES", "LAT": 43.590167, "LON": 7.128333, "ALTI": 1, "MIN_DATE": "1920-08-01", "MAX_DATE": "1942-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.128333, 43.590167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6011002, "NOM_USUEL": "BEAULIEU-SUR-MER VILLA SALLES", "LAT": 43.705, "LON": 7.326667, "ALTI": 9, "MIN_DATE": "1921-01-01", "MAX_DATE": "1935-02-28" }, "geometry": { "type": "Point", "coordinates": [ 7.326667, 43.705 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6013001, "NOM_USUEL": "BELVEDERE AGGLOMERATION", "LAT": 44.018333, "LON": 7.32, "ALTI": 950, "MIN_DATE": "1877-01-01", "MAX_DATE": "1880-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.32, 44.018333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6016001, "NOM_USUEL": "BEUIL-OBS", "LAT": 44.089833, "LON": 6.988, "ALTI": 1464, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.988, 44.089833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6016002, "NOM_USUEL": "BEUIL STATION MILITAIRE", "LAT": 44.095, "LON": 6.99, "ALTI": 1480, "MIN_DATE": "1935-01-01", "MAX_DATE": "1939-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.99, 44.095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6020001, "NOM_USUEL": "LA BOLLENE-VESUBIE BOURG", "LAT": 43.991667, "LON": 7.333333, "ALTI": 650, "MIN_DATE": "1932-07-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.333333, 43.991667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6023001, "NOM_USUEL": "BREIL ROYA-OBS", "LAT": 43.933333, "LON": 7.5, "ALTI": 320, "MIN_DATE": "1931-01-01", "MAX_DATE": "1998-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.5, 43.933333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6029001, "NOM_USUEL": "CANNES", "LAT": 43.5565, "LON": 6.9505, "ALTI": 2, "MIN_DATE": "1949-03-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.9505, 43.5565 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6029002, "NOM_USUEL": "CANNES PEPINIERE MUNICIPALE", "LAT": 43.558333, "LON": 7.016667, "ALTI": 59, "MIN_DATE": "1928-01-01", "MAX_DATE": "1981-08-31" }, "geometry": { "type": "Point", "coordinates": [ 7.016667, 43.558333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6029005, "NOM_USUEL": "CANNES ROUTE DE GRASSE", "LAT": 43.558333, "LON": 7.016667, "ALTI": 75, "MIN_DATE": "1932-07-01", "MAX_DATE": "1956-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.016667, 43.558333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6029006, "NOM_USUEL": "CANNES AGGLOMERATION", "LAT": 43.558333, "LON": 7.016667, "ALTI": 5, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.016667, 43.558333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6057001, "NOM_USUEL": "L ESCARENE", "LAT": 43.838, "LON": 7.355, "ALTI": 380, "MIN_DATE": "1931-01-01", "MAX_DATE": "2014-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.355, 43.838 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6062001, "NOM_USUEL": "FONTAN USINE ELECTRIQUE", "LAT": 44.005, "LON": 7.553333, "ALTI": 425, "MIN_DATE": "1932-01-01", "MAX_DATE": "1971-03-31" }, "geometry": { "type": "Point", "coordinates": [ 7.553333, 44.005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6069006, "NOM_USUEL": "GRASSE VILLA MONT-VENTOUX", "LAT": 43.658333, "LON": 6.921667, "ALTI": 350, "MIN_DATE": "1877-01-01", "MAX_DATE": "1939-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.921667, 43.658333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6071001, "NOM_USUEL": "GUILLAUMES-OBS", "LAT": 44.090667, "LON": 6.852333, "ALTI": 788, "MIN_DATE": "1931-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.852333, 44.090667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6073001, "NOM_USUEL": "ISOLA", "LAT": 44.2, "LON": 7.033333, "ALTI": 870, "MIN_DATE": "1931-03-01", "MAX_DATE": "1999-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.033333, 44.2 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6074002, "NOM_USUEL": "LANTOSQUE-ST-ANDRE", "LAT": 43.975, "LON": 7.313333, "ALTI": 485, "MIN_DATE": "1932-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.313333, 43.975 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6075002, "NOM_USUEL": "LEVENS RUE MASSENA", "LAT": 43.86, "LON": 7.225, "ALTI": 583, "MIN_DATE": "1933-01-01", "MAX_DATE": "1960-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.225, 43.86 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6077002, "NOM_USUEL": "LUCERAM PLAN CAVAL", "LAT": 43.883333, "LON": 7.36, "ALTI": 1920, "MIN_DATE": "1934-09-01", "MAX_DATE": "1940-04-30" }, "geometry": { "type": "Point", "coordinates": [ 7.36, 43.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6077003, "NOM_USUEL": "LUCERAM LE TOURNET", "LAT": 43.883333, "LON": 7.36, "ALTI": 1100, "MIN_DATE": "1933-01-01", "MAX_DATE": "1933-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.36, 43.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6077005, "NOM_USUEL": "LUCERAM", "LAT": 43.883333, "LON": 7.36, "ALTI": 1500, "MIN_DATE": "1929-01-01", "MAX_DATE": "1944-07-31" }, "geometry": { "type": "Point", "coordinates": [ 7.36, 43.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6083002, "NOM_USUEL": "MENTP", "LAT": 43.783333, "LON": 7.5, "ALTI": 10, "MIN_DATE": "1948-01-01", "MAX_DATE": "1986-02-28" }, "geometry": { "type": "Point", "coordinates": [ 7.5, 43.783333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6083004, "NOM_USUEL": "MENTON AGGLOMERATION", "LAT": 43.775, "LON": 7.495, "ALTI": 15, "MIN_DATE": "1877-01-01", "MAX_DATE": "1877-03-05" }, "geometry": { "type": "Point", "coordinates": [ 7.495, 43.775 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088001, "NOM_USUEL": "NICE", "LAT": 43.648833, "LON": 7.209, "ALTI": 2, "MIN_DATE": "1942-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.209, 43.648833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088010, "NOM_USUEL": "NICE", "LAT": 43.714333, "LON": 7.268833, "ALTI": 18, "MIN_DATE": "1877-01-01", "MAX_DATE": "1880-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.268833, 43.714333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088011, "NOM_USUEL": "NICE MONT-GROS", "LAT": 43.726333, "LON": 7.2985, "ALTI": 347, "MIN_DATE": "1884-03-01", "MAX_DATE": "1935-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.2985, 43.726333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088020, "NOM_USUEL": "NICE MASSENA", "LAT": 43.695333, "LON": 7.2695, "ALTI": 2, "MIN_DATE": "1926-07-01", "MAX_DATE": "1938-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.2695, 43.695333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6099001, "NOM_USUEL": "PUGET-THENI-OBS", "LAT": 43.95, "LON": 6.9, "ALTI": 420, "MIN_DATE": "1948-01-01", "MAX_DATE": "1999-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.9, 43.95 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6099002, "NOM_USUEL": "PUGET-THENIERS", "LAT": 43.958333, "LON": 6.893333, "ALTI": 490, "MIN_DATE": "1931-01-01", "MAX_DATE": "1946-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.893333, 43.958333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6106001, "NOM_USUEL": "ROQUESTERON LA TRAVERSE", "LAT": 43.873333, "LON": 7.005, "ALTI": 340, "MIN_DATE": "1931-01-01", "MAX_DATE": "1961-02-28" }, "geometry": { "type": "Point", "coordinates": [ 7.005, 43.873333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6116002, "NOM_USUEL": "ST AUBAN", "LAT": 43.847, "LON": 6.727, "ALTI": 1048, "MIN_DATE": "1930-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.727, 43.847 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6119001, "NOM_USUEL": "ST-DALMAS-LE-SE", "LAT": 44.283333, "LON": 6.85, "ALTI": 1500, "MIN_DATE": "1931-01-01", "MAX_DATE": "2002-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.85, 44.283333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6120003, "NOM_USUEL": "SAINT-ETIENNE-DE-TINEE", "LAT": 44.255, "LON": 6.923333, "ALTI": 1143, "MIN_DATE": "1928-11-01", "MAX_DATE": "1968-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.923333, 44.255 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6121001, "NOM_USUEL": "CAP FERRAT", "LAT": 43.683333, "LON": 7.328333, "ALTI": 138, "MIN_DATE": "1921-01-01", "MAX_DATE": "2010-04-11" }, "geometry": { "type": "Point", "coordinates": [ 7.328333, 43.683333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6121002, "NOM_USUEL": "SAINT-JEAN-CAP-FERRAT", "LAT": 43.69, "LON": 7.33, "ALTI": 35, "MIN_DATE": "1893-09-10", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.33, 43.69 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6129001, "NOM_USUEL": "ST-SAUVEUR-SUR-TINEE", "LAT": 44.084, "LON": 7.102333, "ALTI": 487, "MIN_DATE": "1932-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.102333, 44.084 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6136001, "NOM_USUEL": "SOSPEL-OBS", "LAT": 43.9, "LON": 7.433333, "ALTI": 349, "MIN_DATE": "1928-01-01", "MAX_DATE": "1989-04-30" }, "geometry": { "type": "Point", "coordinates": [ 7.433333, 43.9 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6150002, "NOM_USUEL": "LA TURBIE MONT AGEL", "LAT": 43.745, "LON": 7.4, "ALTI": 1110, "MIN_DATE": "1934-08-01", "MAX_DATE": "1940-04-30" }, "geometry": { "type": "Point", "coordinates": [ 7.4, 43.745 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6151001, "NOM_USUEL": "UTELLE CIMETIERE", "LAT": 43.918333, "LON": 7.246667, "ALTI": 800, "MIN_DATE": "1931-01-01", "MAX_DATE": "1980-09-30" }, "geometry": { "type": "Point", "coordinates": [ 7.246667, 43.918333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6153001, "NOM_USUEL": "VALDEBLORE-OBS", "LAT": 44.066667, "LON": 7.166667, "ALTI": 1000, "MIN_DATE": "1936-01-01", "MAX_DATE": "2001-03-31" }, "geometry": { "type": "Point", "coordinates": [ 7.166667, 44.066667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6153003, "NOM_USUEL": "VALDEBLORE BOURG", "LAT": 44.066667, "LON": 7.203333, "ALTI": 1110, "MIN_DATE": "1931-01-01", "MAX_DATE": "1935-01-31" }, "geometry": { "type": "Point", "coordinates": [ 7.203333, 44.066667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6156001, "NOM_USUEL": "VENANSON VILLAGE", "LAT": 44.055, "LON": 7.255, "ALTI": 1130, "MIN_DATE": "1928-01-01", "MAX_DATE": "1972-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.255, 44.055 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004001, "NOM_USUEL": "ANTIBES VILLA THURET", "LAT": 43.58, "LON": 7.118333, "ALTI": 39, "MIN_DATE": "1952-12-01", "MAX_DATE": "1972-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.118333, 43.58 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004003, "NOM_USUEL": "ANTIBES", "LAT": 43.616667, "LON": 7.116667, "ALTI": 10, "MIN_DATE": "1950-01-01", "MAX_DATE": "1994-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.116667, 43.616667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004004, "NOM_USUEL": "ANTIBES-GOLF", "LAT": 43.579667, "LON": 7.091167, "ALTI": 13, "MIN_DATE": "1964-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.091167, 43.579667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004005, "NOM_USUEL": "ANTIBES-OBS", "LAT": 43.6, "LON": 7.116667, "ALTI": 30, "MIN_DATE": "1966-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.116667, 43.6 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004008, "NOM_USUEL": "ANTIBES LE PUY - CGE", "LAT": 43.58, "LON": 7.118333, "ALTI": 66, "MIN_DATE": "1950-01-01", "MAX_DATE": "1953-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.118333, 43.58 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004009, "NOM_USUEL": "ANTIBES_SAPC", "LAT": 43.599167, "LON": 7.111167, "ALTI": 32, "MIN_DATE": "1988-07-08", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.111167, 43.599167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6004012, "NOM_USUEL": "ANTIBES PORT", "LAT": 43.585333, "LON": 7.127167, "ALTI": 3, "MIN_DATE": "1992-05-01", "MAX_DATE": "2008-03-13" }, "geometry": { "type": "Point", "coordinates": [ 7.127167, 43.585333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6005001, "NOM_USUEL": "ASCROS", "LAT": 43.922, "LON": 7.013667, "ALTI": 1173, "MIN_DATE": "1987-08-14", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.013667, 43.922 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6006001, "NOM_USUEL": "ASPREMONT", "LAT": 43.754667, "LON": 7.247667, "ALTI": 380, "MIN_DATE": "1983-01-01", "MAX_DATE": "2018-07-31" }, "geometry": { "type": "Point", "coordinates": [ 7.247667, 43.754667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6010001, "NOM_USUEL": "BAR-SUR-LOUP", "LAT": 43.7, "LON": 6.983333, "ALTI": 330, "MIN_DATE": "1966-02-01", "MAX_DATE": "2002-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.983333, 43.7 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6011001, "NOM_USUEL": "BEAULIEU-SUR-MER", "LAT": 43.705, "LON": 7.326667, "ALTI": 50, "MIN_DATE": "1969-04-01", "MAX_DATE": "1971-10-31" }, "geometry": { "type": "Point", "coordinates": [ 7.326667, 43.705 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6015001, "NOM_USUEL": "BERRE-DES-ALPES", "LAT": 43.838333, "LON": 7.321667, "ALTI": 715, "MIN_DATE": "1988-07-28", "MAX_DATE": "2009-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.321667, 43.838333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6015002, "NOM_USUEL": "BERRE LES ALPES-COLLA DONNA", "LAT": 43.824333, "LON": 7.338167, "ALTI": 500, "MIN_DATE": "2015-01-01", "MAX_DATE": "2020-11-12" }, "geometry": { "type": "Point", "coordinates": [ 7.338167, 43.824333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6016004, "NOM_USUEL": "BEUIL", "LAT": 44.089, "LON": 6.989333, "ALTI": 1368, "MIN_DATE": "1990-10-15", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.989333, 44.089 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6022001, "NOM_USUEL": "BOUYON-OBS", "LAT": 43.815333, "LON": 7.107167, "ALTI": 730, "MIN_DATE": "1950-01-01", "MAX_DATE": "1986-11-30" }, "geometry": { "type": "Point", "coordinates": [ 7.107167, 43.815333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6022002, "NOM_USUEL": "BOUYON", "LAT": 43.823, "LON": 7.118167, "ALTI": 723, "MIN_DATE": "1989-08-01", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.118167, 43.823 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6023004, "NOM_USUEL": "BREIL SUR ROYA", "LAT": 43.940167, "LON": 7.513667, "ALTI": 305, "MIN_DATE": "1987-08-27", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.513667, 43.940167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6029003, "NOM_USUEL": "CANNES", "LAT": 43.516667, "LON": 7.066667, "ALTI": 10, "MIN_DATE": "1952-01-01", "MAX_DATE": "1975-11-30" }, "geometry": { "type": "Point", "coordinates": [ 7.066667, 43.516667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6029007, "NOM_USUEL": "CANNES PORT", "LAT": 43.55, "LON": 7.033333, "ALTI": 3, "MIN_DATE": "1992-04-24", "MAX_DATE": "1999-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.033333, 43.55 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6033001, "NOM_USUEL": "CARROS-OBS", "LAT": 43.766667, "LON": 7.2, "ALTI": 63, "MIN_DATE": "1967-04-01", "MAX_DATE": "2004-03-31" }, "geometry": { "type": "Point", "coordinates": [ 7.2, 43.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6033002, "NOM_USUEL": "CARROS_SAPC", "LAT": 43.786667, "LON": 7.209167, "ALTI": 78, "MIN_DATE": "1991-03-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.209167, 43.786667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6037001, "NOM_USUEL": "CAUSSOLS LA CELLE", "LAT": 43.743333, "LON": 6.898333, "ALTI": 1104, "MIN_DATE": "1968-07-01", "MAX_DATE": "1972-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.898333, 43.743333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6037002, "NOM_USUEL": "CAUSSOLS", "LAT": 43.752333, "LON": 6.923167, "ALTI": 1268, "MIN_DATE": "1987-08-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.923167, 43.752333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6038001, "NOM_USUEL": "CHATEAUNEUF GRASSE", "LAT": 43.673667, "LON": 6.991, "ALTI": 388, "MIN_DATE": "2012-10-04", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.991, 43.673667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6042002, "NOM_USUEL": "CLANS BOURG - EDF", "LAT": 43.996667, "LON": 7.148333, "ALTI": 630, "MIN_DATE": "1952-07-01", "MAX_DATE": "1961-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.148333, 43.996667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6044001, "NOM_USUEL": "COLLE LOUP-OBS", "LAT": 43.689333, "LON": 7.072667, "ALTI": 44, "MIN_DATE": "1950-01-01", "MAX_DATE": "1998-07-31" }, "geometry": { "type": "Point", "coordinates": [ 7.072667, 43.689333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6044002, "NOM_USUEL": "COLLE SUR LOUP", "LAT": 43.691667, "LON": 7.1, "ALTI": 165, "MIN_DATE": "1990-09-26", "MAX_DATE": "2000-10-31" }, "geometry": { "type": "Point", "coordinates": [ 7.1, 43.691667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6046001, "NOM_USUEL": "COLOMARS", "LAT": 43.766667, "LON": 7.216667, "ALTI": 334, "MIN_DATE": "1953-06-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.216667, 43.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6048001, "NOM_USUEL": "CONTES-OBS", "LAT": 43.8045, "LON": 7.317167, "ALTI": 190, "MIN_DATE": "1966-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.317167, 43.8045 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6048002, "NOM_USUEL": "CONTES SCLOS DE CONTES", "LAT": 43.815, "LON": 7.316667, "ALTI": 340, "MIN_DATE": "1952-06-01", "MAX_DATE": "1970-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.316667, 43.815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6048003, "NOM_USUEL": "CONTES", "LAT": 43.8, "LON": 7.316667, "ALTI": 200, "MIN_DATE": "1990-10-02", "MAX_DATE": "2005-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.316667, 43.8 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6050002, "NOM_USUEL": "COURSEGOULES_SAPC", "LAT": 43.792, "LON": 7.0485, "ALTI": 985, "MIN_DATE": "1989-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.0485, 43.792 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6051001, "NOM_USUEL": "LA CROIX SUR ROUDOULE_SAPC", "LAT": 43.987667, "LON": 6.873333, "ALTI": 860, "MIN_DATE": "2006-12-21", "MAX_DATE": "2013-11-28" }, "geometry": { "type": "Point", "coordinates": [ 6.873333, 43.987667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6052001, "NOM_USUEL": "CUEBRIS", "LAT": 43.888, "LON": 7.015667, "ALTI": 562, "MIN_DATE": "2014-10-01", "MAX_DATE": "2019-03-31" }, "geometry": { "type": "Point", "coordinates": [ 7.015667, 43.888 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6056002, "NOM_USUEL": "ENTRAUNES", "LAT": 44.19, "LON": 6.748333, "ALTI": 1659, "MIN_DATE": "1952-03-01", "MAX_DATE": "1966-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.748333, 44.19 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6056003, "NOM_USUEL": "ENTRAUNES-ESTENC", "LAT": 44.255833, "LON": 6.753, "ALTI": 1850, "MIN_DATE": "1985-06-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.753, 44.255833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6056004, "NOM_USUEL": "ENTRAUNES ESTEINC", "LAT": 44.19, "LON": 6.748333, "ALTI": 1788, "MIN_DATE": "1966-10-01", "MAX_DATE": "1968-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.748333, 44.19 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6056400, "NOM_USUEL": "Estenc", "LAT": 44.239167, "LON": 6.753, "ALTI": 1850, "MIN_DATE": "1996-08-01", "MAX_DATE": "2021-09-12" }, "geometry": { "type": "Point", "coordinates": [ 6.753, 44.239167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6059001, "NOM_USUEL": "EZE-OBS", "LAT": 43.726, "LON": 7.355, "ALTI": 388, "MIN_DATE": "1966-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.355, 43.726 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6059003, "NOM_USUEL": "EZE", "LAT": 43.738833, "LON": 7.365833, "ALTI": 704, "MIN_DATE": "1991-06-14", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.365833, 43.738833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6065001, "NOM_USUEL": "GAUDE", "LAT": 43.732167, "LON": 7.180167, "ALTI": 30, "MIN_DATE": "1983-01-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.180167, 43.732167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6069002, "NOM_USUEL": "GRASSE-OBS", "LAT": 43.65, "LON": 6.9, "ALTI": 318, "MIN_DATE": "1966-03-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.9, 43.65 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6069003, "NOM_USUEL": "GRASM", "LAT": 43.666667, "LON": 6.95, "ALTI": 204, "MIN_DATE": "1966-01-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.95, 43.666667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6069004, "NOM_USUEL": "GRASSE PLASCASSIER", "LAT": 43.658333, "LON": 6.921667, "ALTI": 255, "MIN_DATE": "1967-01-01", "MAX_DATE": "1978-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.921667, 43.658333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6069008, "NOM_USUEL": "GRASSE", "LAT": 43.653667, "LON": 6.9395, "ALTI": 183, "MIN_DATE": "1956-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.9395, 43.653667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6070001, "NOM_USUEL": "GREOLIERES", "LAT": 43.833333, "LON": 6.966667, "ALTI": 1380, "MIN_DATE": "1966-04-01", "MAX_DATE": "1995-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.966667, 43.833333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6071003, "NOM_USUEL": "GUILLAUMES", "LAT": 44.1, "LON": 6.85, "ALTI": 780, "MIN_DATE": "1987-08-11", "MAX_DATE": "2003-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.85, 44.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6073002, "NOM_USUEL": "ISOLA LE VERGER", "LAT": 44.186667, "LON": 7.05, "ALTI": 875, "MIN_DATE": "1952-01-01", "MAX_DATE": "1959-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.05, 44.186667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6073004, "NOM_USUEL": "ISOLA", "LAT": 44.2, "LON": 7.166667, "ALTI": 2035, "MIN_DATE": "1982-01-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.166667, 44.2 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6073005, "NOM_USUEL": "ISOLA 2000", "LAT": 44.1895, "LON": 7.149, "ALTI": 1912, "MIN_DATE": "1972-12-13", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.149, 44.1895 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6073405, "NOM_USUEL": "ISOLA", "LAT": 44.1895, "LON": 7.149, "ALTI": 1912, "MIN_DATE": "2014-07-18", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 7.149, 44.1895 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6074001, "NOM_USUEL": "LANTOSQUE-OBS", "LAT": 43.966667, "LON": 7.316667, "ALTI": 550, "MIN_DATE": "1966-01-01", "MAX_DATE": "2002-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.316667, 43.966667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6074005, "NOM_USUEL": "LANTOSQUE_SAPC", "LAT": 43.972, "LON": 7.307, "ALTI": 550, "MIN_DATE": "2006-12-27", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.307, 43.972 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6075001, "NOM_USUEL": "LEVENS-OBS", "LAT": 43.866667, "LON": 7.216667, "ALTI": 565, "MIN_DATE": "1950-01-01", "MAX_DATE": "2002-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.216667, 43.866667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6075003, "NOM_USUEL": "LEVENS LES MOULINS", "LAT": 43.86, "LON": 7.225, "ALTI": 266, "MIN_DATE": "1950-01-01", "MAX_DATE": "1951-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.225, 43.86 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6075006, "NOM_USUEL": "LEVENS_RESERVOIRS", "LAT": 43.861667, "LON": 7.236667, "ALTI": 668, "MIN_DATE": "1989-08-09", "MAX_DATE": "2008-05-19" }, "geometry": { "type": "Point", "coordinates": [ 7.236667, 43.861667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6075007, "NOM_USUEL": "LEVENS", "LAT": 43.846333, "LON": 7.21, "ALTI": 691, "MIN_DATE": "2008-05-17", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.21, 43.846333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6077001, "NOM_USUEL": "LUCERAM-OBS", "LAT": 43.933333, "LON": 7.366667, "ALTI": 1420, "MIN_DATE": "1953-11-01", "MAX_DATE": "1997-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.366667, 43.933333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6077006, "NOM_USUEL": "PEIRA CAVA", "LAT": 43.929167, "LON": 7.363333, "ALTI": 1443, "MIN_DATE": "1989-09-05", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.363333, 43.929167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6079001, "NOM_USUEL": "MANDELIEU-LA-NAPOULE BOURG", "LAT": 43.555, "LON": 6.936667, "ALTI": 3, "MIN_DATE": "1955-01-01", "MAX_DATE": "1957-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.936667, 43.555 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6079002, "NOM_USUEL": "MANDELIEU LA NAPOULE_SAPC", "LAT": 43.523667, "LON": 6.898667, "ALTI": 104, "MIN_DATE": "1988-07-30", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.898667, 43.523667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6081001, "NOM_USUEL": "LE MAS", "LAT": 43.813667, "LON": 6.809333, "ALTI": 1525, "MIN_DATE": "2006-04-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.809333, 43.813667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6083001, "NOM_USUEL": "MENTON-OBS", "LAT": 43.784833, "LON": 7.528833, "ALTI": 12, "MIN_DATE": "1956-07-01", "MAX_DATE": "2015-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.528833, 43.784833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6083003, "NOM_USUEL": "MENTON CAREI", "LAT": 43.775, "LON": 7.495, "ALTI": 24, "MIN_DATE": "1950-01-01", "MAX_DATE": "1959-03-31" }, "geometry": { "type": "Point", "coordinates": [ 7.495, 43.775 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6083005, "NOM_USUEL": "MENTON", "LAT": 43.785833, "LON": 7.488667, "ALTI": 216, "MIN_DATE": "1988-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.488667, 43.785833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6083006, "NOM_USUEL": "MENTON-PORT", "LAT": 43.784, "LON": 7.519333, "ALTI": 19, "MIN_DATE": "1992-05-26", "MAX_DATE": "2005-11-30" }, "geometry": { "type": "Point", "coordinates": [ 7.519333, 43.784 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6084002, "NOM_USUEL": "MOUANS SARTOUX", "LAT": 43.611833, "LON": 6.951167, "ALTI": 165, "MIN_DATE": "1992-04-07", "MAX_DATE": "2009-01-01" }, "geometry": { "type": "Point", "coordinates": [ 6.951167, 43.611833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6086001, "NOM_USUEL": "MOULINET", "LAT": 43.942, "LON": 7.414667, "ALTI": 817, "MIN_DATE": "1950-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.414667, 43.942 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6086002, "NOM_USUEL": "MOULINET", "LAT": 43.941667, "LON": 7.411667, "ALTI": 1607, "MIN_DATE": "1966-01-01", "MAX_DATE": "1969-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.411667, 43.941667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088002, "NOM_USUEL": "NICE", "LAT": 43.694667, "LON": 7.286833, "ALTI": 6, "MIN_DATE": "1966-01-01", "MAX_DATE": "1971-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.286833, 43.694667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088003, "NOM_USUEL": "NICE-COL", "LAT": 43.710333, "LON": 7.301333, "ALTI": 199, "MIN_DATE": "1950-01-01", "MAX_DATE": "2019-04-30" }, "geometry": { "type": "Point", "coordinates": [ 7.301333, 43.710333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088004, "NOM_USUEL": "GIOFFREDO", "LAT": 43.705, "LON": 7.261667, "ALTI": 3, "MIN_DATE": "1950-01-01", "MAX_DATE": "1978-09-30" }, "geometry": { "type": "Point", "coordinates": [ 7.261667, 43.705 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088005, "NOM_USUEL": "NICE-FERIC", "LAT": 43.7175, "LON": 7.2345, "ALTI": 197, "MIN_DATE": "1950-01-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.2345, 43.7175 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088006, "NOM_USUEL": "NICE", "LAT": 43.717667, "LON": 7.187167, "ALTI": 37, "MIN_DATE": "1967-05-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.187167, 43.717667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088007, "NOM_USUEL": "NICE-RIMIEZ", "LAT": 43.738667, "LON": 7.279167, "ALTI": 238, "MIN_DATE": "1950-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.279167, 43.738667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088008, "NOM_USUEL": "NICE", "LAT": 43.7035, "LON": 7.276, "ALTI": 79, "MIN_DATE": "1978-10-01", "MAX_DATE": "1979-02-28" }, "geometry": { "type": "Point", "coordinates": [ 7.276, 43.7035 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6088009, "NOM_USUEL": "NICE-ST ROMAN", "LAT": 43.751667, "LON": 7.216667, "ALTI": 323, "MIN_DATE": "1987-08-06", "MAX_DATE": "2009-04-01" }, "geometry": { "type": "Point", "coordinates": [ 7.216667, 43.751667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6090001, "NOM_USUEL": "PEGOMAS-TANNERON", "LAT": 43.562667, "LON": 6.897, "ALTI": 483, "MIN_DATE": "1987-08-01", "MAX_DATE": "2010-04-01" }, "geometry": { "type": "Point", "coordinates": [ 6.897, 43.562667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6090002, "NOM_USUEL": "PEGOMAS", "LAT": 43.602667, "LON": 6.936667, "ALTI": 109, "MIN_DATE": "2010-03-15", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.936667, 43.602667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6091001, "NOM_USUEL": "PEILLE-OBS", "LAT": 43.833333, "LON": 7.4, "ALTI": 630, "MIN_DATE": "1956-02-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.4, 43.833333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6091002, "NOM_USUEL": "PEILLE MADONE", "LAT": 43.796, "LON": 7.414667, "ALTI": 1000, "MIN_DATE": "1966-01-01", "MAX_DATE": "1999-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.414667, 43.796 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6091003, "NOM_USUEL": "PEILLE", "LAT": 43.775167, "LON": 7.428333, "ALTI": 1106, "MIN_DATE": "1987-11-05", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.428333, 43.775167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6091004, "NOM_USUEL": "PEILLE", "LAT": 43.8, "LON": 7.4, "ALTI": 672, "MIN_DATE": "1989-10-01", "MAX_DATE": "1997-04-20" }, "geometry": { "type": "Point", "coordinates": [ 7.4, 43.8 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6091005, "NOM_USUEL": "PEILLE-FONTBONNE", "LAT": 43.764167, "LON": 7.425, "ALTI": 793, "MIN_DATE": "2000-01-01", "MAX_DATE": "2013-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.425, 43.764167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6091006, "NOM_USUEL": "PEILLE COL DE LA MADONE", "LAT": 43.796, "LON": 7.414667, "ALTI": 848, "MIN_DATE": "2013-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.414667, 43.796 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6092001, "NOM_USUEL": "PEILLON", "LAT": 43.766333, "LON": 7.356167, "ALTI": 142, "MIN_DATE": "1950-01-01", "MAX_DATE": "2004-05-31" }, "geometry": { "type": "Point", "coordinates": [ 7.356167, 43.766333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6093001, "NOM_USUEL": "LA PENNE", "LAT": 43.906333, "LON": 6.933333, "ALTI": 683, "MIN_DATE": "1992-08-01", "MAX_DATE": "2014-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.933333, 43.906333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6094001, "NOM_USUEL": "PEONE-VALBERG", "LAT": 44.1, "LON": 6.933333, "ALTI": 1659, "MIN_DATE": "1951-02-01", "MAX_DATE": "2005-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.933333, 44.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6094002, "NOM_USUEL": "PEONE", "LAT": 44.099667, "LON": 6.930833, "ALTI": 1784, "MIN_DATE": "2002-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.930833, 44.099667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6094400, "NOM_USUEL": "Valberg", "LAT": 44.087, "LON": 6.941333, "ALTI": 1630, "MIN_DATE": "1971-12-12", "MAX_DATE": "2024-03-25" }, "geometry": { "type": "Point", "coordinates": [ 6.941333, 44.087 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6099004, "NOM_USUEL": "PUGET THENIERS_SAPC", "LAT": 43.956833, "LON": 6.892333, "ALTI": 449, "MIN_DATE": "1991-05-31", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.892333, 43.956833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6102001, "NOM_USUEL": "RIMPLAS_SAPC", "LAT": 44.067167, "LON": 7.1335, "ALTI": 1130, "MIN_DATE": "2007-02-15", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.1335, 44.067167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6103001, "NOM_USUEL": "ROQUEBILLIERE EDF", "LAT": 44.018333, "LON": 7.311667, "ALTI": 625, "MIN_DATE": "1952-03-01", "MAX_DATE": "1958-10-31" }, "geometry": { "type": "Point", "coordinates": [ 7.311667, 44.018333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6104001, "NOM_USUEL": "ROQUEBRUNE-CAP-MARTIN-CGE", "LAT": 43.76, "LON": 7.478333, "ALTI": 75, "MIN_DATE": "1959-05-01", "MAX_DATE": "1977-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.478333, 43.76 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6104002, "NOM_USUEL": "ROQUEBRUNE-CAP-", "LAT": 43.766667, "LON": 7.483333, "ALTI": 40, "MIN_DATE": "1966-01-01", "MAX_DATE": "1998-07-31" }, "geometry": { "type": "Point", "coordinates": [ 7.483333, 43.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6106002, "NOM_USUEL": "ROQUESTERON", "LAT": 43.876333, "LON": 7.006167, "ALTI": 405, "MIN_DATE": "1987-08-06", "MAX_DATE": "2009-01-01" }, "geometry": { "type": "Point", "coordinates": [ 7.006167, 43.876333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6109001, "NOM_USUEL": "ROQUETTE-SUR-VA", "LAT": 43.816667, "LON": 7.216667, "ALTI": 260, "MIN_DATE": "1965-02-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.216667, 43.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6110001, "NOM_USUEL": "ROUBION BOURG", "LAT": 44.095, "LON": 7.048333, "ALTI": 1305, "MIN_DATE": "1959-04-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.048333, 44.095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6117001, "NOM_USUEL": "SAINT-BLAISE BOURG", "LAT": 43.821667, "LON": 7.236667, "ALTI": 260, "MIN_DATE": "1952-01-01", "MAX_DATE": "1965-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.236667, 43.821667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6118001, "NOM_USUEL": "ST CEZAIRE", "LAT": 43.645167, "LON": 6.797667, "ALTI": 474, "MIN_DATE": "1987-08-01", "MAX_DATE": "2005-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.797667, 43.645167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6118002, "NOM_USUEL": "ST CEZAIRE SUR SIAGNE", "LAT": 43.678667, "LON": 6.809, "ALTI": 694, "MIN_DATE": "2005-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.809, 43.678667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6119002, "NOM_USUEL": "SAINT-DALMAS-LE-SELVAGE", "LAT": 44.285, "LON": 6.865, "ALTI": 1880, "MIN_DATE": "1960-02-01", "MAX_DATE": "1960-10-31" }, "geometry": { "type": "Point", "coordinates": [ 6.865, 44.285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6120001, "NOM_USUEL": "TINEE-AURON", "LAT": 44.222667, "LON": 6.937333, "ALTI": 1605, "MIN_DATE": "1952-03-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.937333, 44.222667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6120004, "NOM_USUEL": "ST ETIENNE DE TINEE_SAPC", "LAT": 44.257667, "LON": 6.921167, "ALTI": 1150, "MIN_DATE": "2007-03-29", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.921167, 44.257667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6120400, "NOM_USUEL": "Auron", "LAT": 44.215333, "LON": 6.9135, "ALTI": 1910, "MIN_DATE": "1982-12-21", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ 6.9135, 44.215333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6120401, "NOM_USUEL": "Auron -S-", "LAT": 44.207833, "LON": 6.928667, "ALTI": 2099, "MIN_DATE": "2005-04-01", "MAX_DATE": "2005-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.928667, 44.207833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6125001, "NOM_USUEL": "ST MARTIN D'ENTRAUNES_SAPC", "LAT": 44.154667, "LON": 6.747, "ALTI": 1642, "MIN_DATE": "2007-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.747, 44.154667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6126001, "NOM_USUEL": "ST MARTIN DUVAR", "LAT": 43.821, "LON": 7.188, "ALTI": 103, "MIN_DATE": "1966-09-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.188, 43.821 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6127001, "NOM_USUEL": "ST-MARTIN-DE-VESUBIE-OBS", "LAT": 44.074167, "LON": 7.254167, "ALTI": 994, "MIN_DATE": "1950-03-01", "MAX_DATE": "2023-07-04" }, "geometry": { "type": "Point", "coordinates": [ 7.254167, 44.074167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6127002, "NOM_USUEL": "BOREON", "LAT": 44.116667, "LON": 7.283333, "ALTI": 1550, "MIN_DATE": "1982-06-01", "MAX_DATE": "1993-08-31" }, "geometry": { "type": "Point", "coordinates": [ 7.283333, 44.116667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6127003, "NOM_USUEL": "ST MARTIN VESUBIE", "LAT": 44.073667, "LON": 7.258167, "ALTI": 1044, "MIN_DATE": "1989-07-19", "MAX_DATE": "2014-01-01" }, "geometry": { "type": "Point", "coordinates": [ 7.258167, 44.073667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6127006, "NOM_USUEL": "SAINT MARTIN VESUBIE_SAPC", "LAT": 44.065667, "LON": 7.255, "ALTI": 899, "MIN_DATE": "2013-11-01", "MAX_DATE": "2020-10-03" }, "geometry": { "type": "Point", "coordinates": [ 7.255, 44.065667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6130001, "NOM_USUEL": "ST-VALLIER-OBS", "LAT": 43.716667, "LON": 6.833333, "ALTI": 715, "MIN_DATE": "1950-03-01", "MAX_DATE": "2005-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.833333, 43.716667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6130002, "NOM_USUEL": "ST VALLIER", "LAT": 43.691333, "LON": 6.843, "ALTI": 708, "MIN_DATE": "1989-11-28", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.843, 43.691333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6134001, "NOM_USUEL": "SERANON GENDARMERIE", "LAT": 43.773333, "LON": 6.705, "ALTI": 1070, "MIN_DATE": "1966-01-01", "MAX_DATE": "1972-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.705, 43.773333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6135001, "NOM_USUEL": "SIGALE", "LAT": 43.874, "LON": 6.968667, "ALTI": 629, "MIN_DATE": "1961-05-01", "MAX_DATE": "2002-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.968667, 43.874 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6136003, "NOM_USUEL": "SOSPEL", "LAT": 43.883333, "LON": 7.45, "ALTI": 360, "MIN_DATE": "1988-09-01", "MAX_DATE": "2003-01-31" }, "geometry": { "type": "Point", "coordinates": [ 7.45, 43.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6136004, "NOM_USUEL": "SOSPEL-COLLETTA", "LAT": 43.866667, "LON": 7.433333, "ALTI": 540, "MIN_DATE": "1989-05-01", "MAX_DATE": "2005-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.433333, 43.866667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6136005, "NOM_USUEL": "SOSPEL", "LAT": 43.862833, "LON": 7.433667, "ALTI": 843, "MIN_DATE": "2004-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.433667, 43.862833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6138001, "NOM_USUEL": "THEOULE", "LAT": 43.5, "LON": 6.95, "ALTI": 15, "MIN_DATE": "1966-02-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.95, 43.5 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6148001, "NOM_USUEL": "TOURRETTES SUR LOUP", "LAT": 43.708167, "LON": 7.055833, "ALTI": 311, "MIN_DATE": "1988-07-22", "MAX_DATE": "2012-10-23" }, "geometry": { "type": "Point", "coordinates": [ 7.055833, 43.708167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6149001, "NOM_USUEL": "LA TRINITE", "LAT": 43.7275, "LON": 7.301, "ALTI": 341, "MIN_DATE": "1966-01-01", "MAX_DATE": "2021-01-01" }, "geometry": { "type": "Point", "coordinates": [ 7.301, 43.7275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6150001, "NOM_USUEL": "LA TURBIE", "LAT": 43.741667, "LON": 7.400167, "ALTI": 495, "MIN_DATE": "1967-11-01", "MAX_DATE": "2006-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.400167, 43.741667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6151002, "NOM_USUEL": "UTELLE", "LAT": 43.916667, "LON": 7.266667, "ALTI": 279, "MIN_DATE": "1950-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.266667, 43.916667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6152001, "NOM_USUEL": "VALBONNE", "LAT": 43.642167, "LON": 7.037167, "ALTI": 190, "MIN_DATE": "1965-03-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.037167, 43.642167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6152002, "NOM_USUEL": "VALBONNE-SOPHIA", "LAT": 43.623167, "LON": 7.0285, "ALTI": 238, "MIN_DATE": "1987-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.0285, 43.623167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6153004, "NOM_USUEL": "VALDEBLORE", "LAT": 44.069, "LON": 7.1695, "ALTI": 1058, "MIN_DATE": "1991-05-29", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.1695, 44.069 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6153400, "NOM_USUEL": "MILLEFONTS-NIVOSE", "LAT": 44.118333, "LON": 7.192, "ALTI": 2430, "MIN_DATE": "2007-10-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.192, 44.118333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6154002, "NOM_USUEL": "VALDEROURE", "LAT": 43.792333, "LON": 6.7345, "ALTI": 1105, "MIN_DATE": "1987-04-01", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.7345, 43.792333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6155001, "NOM_USUEL": "VALLAURIS", "LAT": 43.583333, "LON": 7.05, "ALTI": 110, "MIN_DATE": "1966-01-01", "MAX_DATE": "1987-07-31" }, "geometry": { "type": "Point", "coordinates": [ 7.05, 43.583333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6157001, "NOM_USUEL": "VENCE MAISON DES ETUDIANTES", "LAT": 43.723333, "LON": 7.111667, "ALTI": 299, "MIN_DATE": "1958-01-01", "MAX_DATE": "1971-08-31" }, "geometry": { "type": "Point", "coordinates": [ 7.111667, 43.723333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6157002, "NOM_USUEL": "VENCE", "LAT": 43.716667, "LON": 7.116667, "ALTI": 321, "MIN_DATE": "1951-01-01", "MAX_DATE": "2001-09-30" }, "geometry": { "type": "Point", "coordinates": [ 7.116667, 43.716667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6158001, "NOM_USUEL": "VILLARS-SUR-VAR", "LAT": 43.9345, "LON": 7.088667, "ALTI": 380, "MIN_DATE": "1966-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.088667, 43.9345 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6163001, "NOM_USUEL": "TENDE-OBS", "LAT": 44.086667, "LON": 7.595, "ALTI": 792, "MIN_DATE": "1952-09-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.595, 44.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6163003, "NOM_USUEL": "TENDE TUNNEL - COL DE TENDE", "LAT": 44.085, "LON": 7.591667, "ALTI": 1279, "MIN_DATE": "1966-01-01", "MAX_DATE": "1970-10-31" }, "geometry": { "type": "Point", "coordinates": [ 7.591667, 44.085 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6163004, "NOM_USUEL": "TENDE USINE DE MESCES - EDF", "LAT": 44.085, "LON": 7.591667, "ALTI": 1370, "MIN_DATE": "1952-03-01", "MAX_DATE": "1962-12-27" }, "geometry": { "type": "Point", "coordinates": [ 7.591667, 44.085 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6163005, "NOM_USUEL": "TENDE-CASTERINO", "LAT": 44.091833, "LON": 7.5035, "ALTI": 1554, "MIN_DATE": "1982-06-15", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 7.5035, 44.091833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6163007, "NOM_USUEL": "TENDE_SAPC", "LAT": 44.043167, "LON": 7.586, "ALTI": 636, "MIN_DATE": "1989-07-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.586, 44.043167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6163400, "NOM_USUEL": "Val Casterino", "LAT": 44.0975, "LON": 7.505833, "ALTI": 1554, "MIN_DATE": "1989-12-14", "MAX_DATE": "2022-02-15" }, "geometry": { "type": "Point", "coordinates": [ 7.505833, 44.0975 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 6103002, "NOM_USUEL": "BERTHEMONT-LES-BAINS_SAPC", "LAT": 44.044333, "LON": 7.300833, "ALTI": 938, "MIN_DATE": "2023-07-05", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 7.300833, 44.044333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98611001, "NOM_USUEL": "MAOPOOPO", "LAT": -14.308333, "LON": -178.116667, "ALTI": 35, "MIN_DATE": "1979-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ -178.116667, -14.308333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98611002, "NOM_USUEL": "POI", "LAT": -14.295, "LON": -178.091667, "ALTI": 5, "MIN_DATE": "1986-01-01", "MAX_DATE": "2001-08-31" }, "geometry": { "type": "Point", "coordinates": [ -178.091667, -14.295 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98611004, "NOM_USUEL": "MAOPOOPO DOUBLON", "LAT": -14.308333, "LON": -178.121667, "ALTI": 35, "MIN_DATE": "2011-10-01", "MAX_DATE": "2023-03-31" }, "geometry": { "type": "Point", "coordinates": [ -178.121667, -14.308333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98612001, "NOM_USUEL": "SALAUNIU-LEAVA", "LAT": -14.291667, "LON": -178.161667, "ALTI": 6, "MIN_DATE": "1986-01-01", "MAX_DATE": "2010-01-31" }, "geometry": { "type": "Point", "coordinates": [ -178.161667, -14.291667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98613001, "NOM_USUEL": "HIHIFO", "LAT": -13.239833, "LON": -176.194167, "ALTI": 30, "MIN_DATE": "1971-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ -176.194167, -13.239833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98613002, "NOM_USUEL": "AKA AKA", "LAT": -13.275, "LON": -176.17, "ALTI": 10, "MIN_DATE": "1970-07-01", "MAX_DATE": "1999-12-31" }, "geometry": { "type": "Point", "coordinates": [ -176.17, -13.275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98613003, "NOM_USUEL": "MONT HOLO", "LAT": -13.281667, "LON": -176.196667, "ALTI": 75, "MIN_DATE": "1986-01-01", "MAX_DATE": "1999-05-31" }, "geometry": { "type": "Point", "coordinates": [ -176.196667, -13.281667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98613004, "NOM_USUEL": "MALAETOLI", "LAT": -13.32, "LON": -176.23, "ALTI": 4, "MIN_DATE": "1966-01-01", "MAX_DATE": "2024-04-07" }, "geometry": { "type": "Point", "coordinates": [ -176.23, -13.32 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 98613006, "NOM_USUEL": "HIHIFO DOUBLON", "LAT": -13.239833, "LON": -176.194167, "ALTI": 30, "MIN_DATE": "2011-11-01", "MAX_DATE": "2024-04-01" }, "geometry": { "type": "Point", "coordinates": [ -176.194167, -13.239833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64040002, "NOM_USUEL": "ARETTE-EC", "LAT": 43.095, "LON": -0.716667, "ALTI": 316, "MIN_DATE": "1931-02-01", "MAX_DATE": "1939-07-15" }, "geometry": { "type": "Point", "coordinates": [ -0.716667, 43.095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64042001, "NOM_USUEL": "ARGAGNON", "LAT": 43.457833, "LON": -0.6835, "ALTI": 103, "MIN_DATE": "1931-11-01", "MAX_DATE": "2015-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.6835, 43.457833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64058001, "NOM_USUEL": "ARTHEZ-D'ASSON ECOLE", "LAT": 43.09, "LON": -0.253333, "ALTI": 385, "MIN_DATE": "1931-03-01", "MAX_DATE": "1940-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.253333, 43.09 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64085001, "NOM_USUEL": "AYDIUS", "LAT": 43.001667, "LON": -0.541667, "ALTI": 768, "MIN_DATE": "1940-01-01", "MAX_DATE": "1945-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.541667, 43.001667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64086001, "NOM_USUEL": "AYHERRE ECOLE", "LAT": 43.393333, "LON": -1.253333, "ALTI": 120, "MIN_DATE": "1933-08-01", "MAX_DATE": "1943-06-30" }, "geometry": { "type": "Point", "coordinates": [ -1.253333, 43.393333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64092002, "NOM_USUEL": "BANCA", "LAT": 43.128667, "LON": -1.372833, "ALTI": 252, "MIN_DATE": "1934-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.372833, 43.128667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64102001, "NOM_USUEL": "BAYONNE", "LAT": 43.49, "LON": -1.476667, "ALTI": 35, "MIN_DATE": "1881-01-01", "MAX_DATE": "1920-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.476667, 43.49 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64104001, "NOM_USUEL": "BEDOUS BOURG", "LAT": 42.996667, "LON": -0.596667, "ALTI": 415, "MIN_DATE": "1882-01-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.596667, 42.996667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64122001, "NOM_USUEL": "BIARRITZ-SEMAPHORE", "LAT": 43.483333, "LON": -1.5675, "ALTI": 29, "MIN_DATE": "1931-10-07", "MAX_DATE": "1936-07-31" }, "geometry": { "type": "Point", "coordinates": [ -1.5675, 43.483333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64122002, "NOM_USUEL": "BIARRITZ PHARE", "LAT": 43.478333, "LON": -1.555, "ALTI": 35, "MIN_DATE": "1949-01-01", "MAX_DATE": "1965-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.555, 43.478333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64128001, "NOM_USUEL": "BILHERES ECOLE", "LAT": 43.06, "LON": -0.448333, "ALTI": 650, "MIN_DATE": "1938-03-01", "MAX_DATE": "1954-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.448333, 43.06 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64136001, "NOM_USUEL": "BORCE", "LAT": 42.908333, "LON": -0.571667, "ALTI": 1070, "MIN_DATE": "1934-01-01", "MAX_DATE": "1974-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.571667, 42.908333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64148002, "NOM_USUEL": "BRUGES-CAPBIS-MIFAGET BOURG", "LAT": 43.126667, "LON": -0.303333, "ALTI": 308, "MIN_DATE": "1938-10-01", "MAX_DATE": "1940-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.303333, 43.126667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64157002, "NOM_USUEL": "BUZY BOURG", "LAT": 43.133333, "LON": -0.458333, "ALTI": 376, "MIN_DATE": "1940-01-01", "MAX_DATE": "1945-01-31" }, "geometry": { "type": "Point", "coordinates": [ -0.458333, 43.133333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64188001, "NOM_USUEL": "CHERAUTE USINE DE BARRAGARY", "LAT": 43.231667, "LON": -0.866667, "ALTI": 130, "MIN_DATE": "1881-01-01", "MAX_DATE": "1965-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.866667, 43.231667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64189001, "NOM_USUEL": "SOCOA", "LAT": 43.3945, "LON": -1.6865, "ALTI": 21, "MIN_DATE": "1921-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.6865, 43.3945 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64204002, "NOM_USUEL": "EAUX-BONNES-GABAS", "LAT": 42.97, "LON": -0.39, "ALTI": 730, "MIN_DATE": "1940-01-01", "MAX_DATE": "1944-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.39, 42.97 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64204003, "NOM_USUEL": "EAUX-BONNES GELAN", "LAT": 42.97, "LON": -0.39, "ALTI": 849, "MIN_DATE": "1877-01-01", "MAX_DATE": "1914-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.39, 42.97 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64216001, "NOM_USUEL": "ESPOEY", "LAT": 43.248333, "LON": -0.155, "ALTI": 312, "MIN_DATE": "1920-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.155, 43.248333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64233002, "NOM_USUEL": "GARLIN BOURG", "LAT": 43.56, "LON": -0.271667, "ALTI": 134, "MIN_DATE": "1928-03-01", "MAX_DATE": "1940-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.271667, 43.56 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64260001, "NOM_USUEL": "HENDAYE BIDASSOA", "LAT": 43.37, "LON": -1.768333, "ALTI": 1, "MIN_DATE": "1931-05-11", "MAX_DATE": "1984-08-31" }, "geometry": { "type": "Point", "coordinates": [ -1.768333, 43.37 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64271001, "NOM_USUEL": "IHOLDY ECOLE", "LAT": 43.283333, "LON": -1.18, "ALTI": 155, "MIN_DATE": "1931-03-07", "MAX_DATE": "1956-04-30" }, "geometry": { "type": "Point", "coordinates": [ -1.18, 43.283333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64291001, "NOM_USUEL": "LABASTIDE-VILLEFRANCHE", "LAT": 43.453333, "LON": -1.02, "ALTI": 60, "MIN_DATE": "1928-01-01", "MAX_DATE": "1964-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.02, 43.453333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320001, "NOM_USUEL": "LARUNS-ARTOUSTE", "LAT": 42.886333, "LON": -0.410667, "ALTI": 1132, "MIN_DATE": "1934-01-01", "MAX_DATE": "2016-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.410667, 42.886333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320002, "NOM_USUEL": "LARUNS USINE SNCF DE MIEGEBAT", "LAT": 42.933333, "LON": -0.453333, "ALTI": 735, "MIN_DATE": "1943-11-01", "MAX_DATE": "1970-09-30" }, "geometry": { "type": "Point", "coordinates": [ -0.453333, 42.933333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320004, "NOM_USUEL": "LARUNS", "LAT": 42.858333, "LON": -0.326667, "ALTI": 1990, "MIN_DATE": "1933-12-01", "MAX_DATE": "1965-10-31" }, "geometry": { "type": "Point", "coordinates": [ -0.326667, 42.858333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320005, "NOM_USUEL": "LARUNS PLACE DU BLAID", "LAT": 42.986667, "LON": -0.425, "ALTI": 523, "MIN_DATE": "1939-07-01", "MAX_DATE": "1964-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.425, 42.986667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320006, "NOM_USUEL": "LARUNS PONTS-ET-CHAUSSEES", "LAT": 42.986667, "LON": -0.425, "ALTI": 520, "MIN_DATE": "1882-01-01", "MAX_DATE": "1944-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.425, 42.986667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64324001, "NOM_USUEL": "LASSEUBE", "LAT": 43.208333, "LON": -0.46, "ALTI": 217, "MIN_DATE": "1934-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.46, 43.208333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64331002, "NOM_USUEL": "LEMBEYE", "LAT": 43.4515, "LON": -0.109167, "ALTI": 310, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.109167, 43.4515 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64335001, "NOM_USUEL": "LESCAR ECOLE NORMALE", "LAT": 43.333333, "LON": -0.435, "ALTI": 160, "MIN_DATE": "1865-03-19", "MAX_DATE": "1937-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.435, 43.333333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64336001, "NOM_USUEL": "LESCUN", "LAT": 42.93, "LON": -0.643333, "ALTI": 825, "MIN_DATE": "1949-12-01", "MAX_DATE": "1990-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.643333, 42.93 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64336002, "NOM_USUEL": "LESCUN CENTRE VILLAGE", "LAT": 42.935, "LON": -0.633333, "ALTI": 907, "MIN_DATE": "1940-01-01", "MAX_DATE": "1954-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.633333, 42.935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64360001, "NOM_USUEL": "LURBE-SAINT-CHRISTAU ECOLE", "LAT": 43.111667, "LON": -0.608333, "ALTI": 320, "MIN_DATE": "1931-03-13", "MAX_DATE": "1940-02-29" }, "geometry": { "type": "Point", "coordinates": [ -0.608333, 43.111667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64371002, "NOM_USUEL": "MAULEON-LICHARRE-ECOLE", "LAT": 43.221667, "LON": -0.885, "ALTI": 214, "MIN_DATE": "1874-07-01", "MAX_DATE": "1878-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.885, 43.221667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64404002, "NOM_USUEL": "MONTORY ECOLE", "LAT": 43.096667, "LON": -0.816667, "ALTI": 270, "MIN_DATE": "1931-01-01", "MAX_DATE": "1940-01-31" }, "geometry": { "type": "Point", "coordinates": [ -0.816667, 43.096667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64416001, "NOM_USUEL": "NAVARRENX", "LAT": 43.324333, "LON": -0.7535, "ALTI": 135, "MIN_DATE": "1931-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.7535, 43.324333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64417001, "NOM_USUEL": "NAY BOURG", "LAT": 43.178333, "LON": -0.261667, "ALTI": 264, "MIN_DATE": "1889-01-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.261667, 43.178333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64422002, "NOM_USUEL": "OLORON-SAINTE-MARIE BOURG", "LAT": 43.191667, "LON": -0.608333, "ALTI": 225, "MIN_DATE": "1882-01-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.608333, 43.191667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64430001, "NOM_USUEL": "ORTHEZ", "LAT": 43.49, "LON": -0.771667, "ALTI": 87, "MIN_DATE": "1881-01-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.771667, 43.49 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64430002, "NOM_USUEL": "ORTHEZ BOURG", "LAT": 43.49, "LON": -0.771667, "ALTI": 62, "MIN_DATE": "1934-01-01", "MAX_DATE": "1935-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.771667, 43.49 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64430004, "NOM_USUEL": "ORTHEZ CARLIER", "LAT": 43.491667, "LON": -0.77, "ALTI": 104, "MIN_DATE": "1895-01-01", "MAX_DATE": "1904-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.77, 43.491667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64444001, "NOM_USUEL": "PARDIES-PIETAT ECOLE", "LAT": 43.215, "LON": -0.298333, "ALTI": 300, "MIN_DATE": "1932-01-01", "MAX_DATE": "1938-09-30" }, "geometry": { "type": "Point", "coordinates": [ -0.298333, 43.215 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64445003, "NOM_USUEL": "PAU GARE", "LAT": 43.301667, "LON": -0.366667, "ALTI": 177, "MIN_DATE": "1877-01-01", "MAX_DATE": "1922-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.366667, 43.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64445006, "NOM_USUEL": "PAU PONTS-ET-CHAUSSEES", "LAT": 43.301667, "LON": -0.366667, "ALTI": 194, "MIN_DATE": "1923-01-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.366667, 43.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64445007, "NOM_USUEL": "PAU TOUR DE LA MONNAIE", "LAT": 43.301667, "LON": -0.366667, "ALTI": 194, "MIN_DATE": "1872-06-01", "MAX_DATE": "1879-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.366667, 43.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64445008, "NOM_USUEL": "PAU LILAS", "LAT": 43.308333, "LON": -0.348333, "ALTI": 217, "MIN_DATE": "1902-01-01", "MAX_DATE": "2007-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.348333, 43.308333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64445010, "NOM_USUEL": "PAU", "LAT": 43.301667, "LON": -0.366667, "ALTI": 201, "MIN_DATE": "1872-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.366667, 43.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64450001, "NOM_USUEL": "POMPS", "LAT": 43.490833, "LON": -0.5435, "ALTI": 130, "MIN_DATE": "1931-03-05", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.5435, 43.490833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64475003, "NOM_USUEL": "SAINTE-ENGRACE", "LAT": 42.996667, "LON": -0.818333, "ALTI": 435, "MIN_DATE": "1940-01-01", "MAX_DATE": "1944-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.818333, 42.996667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64479001, "NOM_USUEL": "SAINT-GIRONS BOURG", "LAT": 43.555, "LON": -0.831667, "ALTI": 102, "MIN_DATE": "1931-03-01", "MAX_DATE": "1939-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.831667, 43.555 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64485002, "NOM_USUEL": "SAINT-JEAN-PIED-DE-PORT BOURG", "LAT": 43.163333, "LON": -1.235, "ALTI": 160, "MIN_DATE": "1881-01-01", "MAX_DATE": "1945-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.235, 43.163333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64493001, "NOM_USUEL": "ST-PALAIS", "LAT": 43.323333, "LON": -1.016667, "ALTI": 55, "MIN_DATE": "1928-01-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.016667, 43.323333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64504002, "NOM_USUEL": "SARE ECOLE", "LAT": 43.313333, "LON": -1.58, "ALTI": 86, "MIN_DATE": "1931-03-01", "MAX_DATE": "1944-06-30" }, "geometry": { "type": "Point", "coordinates": [ -1.58, 43.313333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64513001, "NOM_USUEL": "SAUVETERRE-DE-BEARN", "LAT": 43.4, "LON": -0.941667, "ALTI": 105, "MIN_DATE": "1928-01-01", "MAX_DATE": "1964-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.941667, 43.4 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64536001, "NOM_USUEL": "THEZE ECOLE", "LAT": 43.476667, "LON": -0.346667, "ALTI": 242, "MIN_DATE": "1931-04-01", "MAX_DATE": "1942-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.346667, 43.476667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64542004, "NOM_USUEL": "URDOS AGGLOMERATION", "LAT": 42.871667, "LON": -0.55, "ALTI": 783, "MIN_DATE": "1901-01-01", "MAX_DATE": "1905-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.55, 42.871667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64542005, "NOM_USUEL": "URDOS PEYRANERE", "LAT": 42.871667, "LON": -0.55, "ALTI": 1417, "MIN_DATE": "1877-01-01", "MAX_DATE": "1914-11-29" }, "geometry": { "type": "Point", "coordinates": [ -0.55, 42.871667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64547001, "NOM_USUEL": "USTARITZ ECOLE", "LAT": 43.396667, "LON": -1.455, "ALTI": 17, "MIN_DATE": "1931-06-01", "MAX_DATE": "1940-06-30" }, "geometry": { "type": "Point", "coordinates": [ -1.455, 43.396667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64549001, "NOM_USUEL": "PAU-UZEIN", "LAT": 43.385, "LON": -0.416333, "ALTI": 183, "MIN_DATE": "1921-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.416333, 43.385 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64005001, "NOM_USUEL": "ABOS VILLAGE", "LAT": 43.358333, "LON": -0.561667, "ALTI": 118, "MIN_DATE": "1958-07-15", "MAX_DATE": "1971-09-30" }, "geometry": { "type": "Point", "coordinates": [ -0.561667, 43.358333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64006001, "NOM_USUEL": "ACCOUS", "LAT": 42.945167, "LON": -0.6105, "ALTI": 495, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.6105, 42.945167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64007001, "NOM_USUEL": "AGNOS", "LAT": 43.156667, "LON": -0.613333, "ALTI": 294, "MIN_DATE": "1987-01-01", "MAX_DATE": "1992-09-17" }, "geometry": { "type": "Point", "coordinates": [ -0.613333, 43.156667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64010001, "NOM_USUEL": "AICIRITS", "LAT": 43.335, "LON": -1.01, "ALTI": 60, "MIN_DATE": "1992-01-01", "MAX_DATE": "1998-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.01, 43.335 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64010002, "NOM_USUEL": "AICIRITS", "LAT": 43.335, "LON": -1.0205, "ALTI": 75, "MIN_DATE": "1993-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.0205, 43.335 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64016001, "NOM_USUEL": "ALDUDES HAMEAU D'ESNAZU", "LAT": 43.098333, "LON": -1.425, "ALTI": 530, "MIN_DATE": "1955-01-01", "MAX_DATE": "1957-08-31" }, "geometry": { "type": "Point", "coordinates": [ -1.425, 43.098333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64021001, "NOM_USUEL": "ANDOINS", "LAT": 43.313333, "LON": -0.24, "ALTI": 313, "MIN_DATE": "1993-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.24, 43.313333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64024001, "NOM_USUEL": "BIARRITZ-PAYS-BASQUE", "LAT": 43.469333, "LON": -1.534333, "ALTI": 71, "MIN_DATE": "1956-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.534333, 43.469333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64040001, "NOM_USUEL": "ARETTE", "LAT": 43.095, "LON": -0.716667, "ALTI": 320, "MIN_DATE": "1957-01-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.716667, 43.095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64040003, "NOM_USUEL": "ARETTE", "LAT": 43.096667, "LON": -0.69, "ALTI": 430, "MIN_DATE": "1989-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.69, 43.096667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64040400, "NOM_USUEL": "ARETTE LA-PIERRE-SAINT-MARTIN", "LAT": 42.9785, "LON": -0.748167, "ALTI": 1650, "MIN_DATE": "1971-12-16", "MAX_DATE": "2024-04-01" }, "geometry": { "type": "Point", "coordinates": [ -0.748167, 42.9785 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64043001, "NOM_USUEL": "ARGELOS", "LAT": 43.445, "LON": -0.345, "ALTI": 220, "MIN_DATE": "1960-01-01", "MAX_DATE": "2018-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.345, 43.445 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64060001, "NOM_USUEL": "ARTIGUELOUVE ECOLE", "LAT": 43.318333, "LON": -0.473333, "ALTI": 150, "MIN_DATE": "1956-01-01", "MAX_DATE": "1971-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.473333, 43.318333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64067001, "NOM_USUEL": "ASSAT QUARTIER DE L'EGLISE", "LAT": 43.25, "LON": -0.298333, "ALTI": 213, "MIN_DATE": "1956-01-01", "MAX_DATE": "1969-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.298333, 43.25 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64068001, "NOM_USUEL": "ASSON", "LAT": 43.127167, "LON": -0.2725, "ALTI": 337, "MIN_DATE": "1969-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.2725, 43.127167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64087001, "NOM_USUEL": "BAIGTS-DE-BEARN", "LAT": 43.511667, "LON": -0.841667, "ALTI": 45, "MIN_DATE": "1951-01-01", "MAX_DATE": "1992-02-29" }, "geometry": { "type": "Point", "coordinates": [ -0.841667, 43.511667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64087002, "NOM_USUEL": "BAIGTS-DE-BEARN", "LAT": 43.536667, "LON": -0.836667, "ALTI": 167, "MIN_DATE": "1992-12-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.836667, 43.536667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64090001, "NOM_USUEL": "BALIRACQ-MAUMUSSON BITAILLOU", "LAT": 43.545, "LON": -0.253333, "ALTI": 130, "MIN_DATE": "1970-05-01", "MAX_DATE": "1970-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.253333, 43.545 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64101001, "NOM_USUEL": "BAUDREIX", "LAT": 43.206667, "LON": -0.256667, "ALTI": 237, "MIN_DATE": "1950-10-01", "MAX_DATE": "1989-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.256667, 43.206667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64108001, "NOM_USUEL": "BELLOCQ-PUYOO", "LAT": 43.517667, "LON": -0.9195, "ALTI": 45, "MIN_DATE": "1987-02-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.9195, 43.517667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64109001, "NOM_USUEL": "BENEJACQ", "LAT": 43.193167, "LON": -0.220333, "ALTI": 255, "MIN_DATE": "1955-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.220333, 43.193167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64110002, "NOM_USUEL": "BEOST", "LAT": 42.991667, "LON": -0.41, "ALTI": 1600, "MIN_DATE": "1973-01-01", "MAX_DATE": "1973-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.41, 42.991667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64115001, "NOM_USUEL": "BERROGAIN LARUN", "LAT": 43.246667, "LON": -0.866667, "ALTI": 165, "MIN_DATE": "1997-01-01", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.866667, 43.246667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64122003, "NOM_USUEL": "BIARRITZ-VILLE", "LAT": 43.478333, "LON": -1.555, "ALTI": 29, "MIN_DATE": "1954-11-01", "MAX_DATE": "1959-06-30" }, "geometry": { "type": "Point", "coordinates": [ -1.555, 43.478333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64122006, "NOM_USUEL": "BIARRITZ-MUSEE", "LAT": 43.485, "LON": -1.566667, "ALTI": 34, "MIN_DATE": "1991-09-01", "MAX_DATE": "2006-11-30" }, "geometry": { "type": "Point", "coordinates": [ -1.566667, 43.485 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64123001, "NOM_USUEL": "BIDACHE", "LAT": 43.481167, "LON": -1.142167, "ALTI": 45, "MIN_DATE": "1965-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.142167, 43.481167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64148001, "NOM_USUEL": "BRUGES-CAPBIS-MIFAGET", "LAT": 43.126667, "LON": -0.303333, "ALTI": 355, "MIN_DATE": "1964-06-01", "MAX_DATE": "1969-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.303333, 43.126667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64155001, "NOM_USUEL": "BUSTINCE - ST JEAN", "LAT": 43.167333, "LON": -1.2145, "ALTI": 179, "MIN_DATE": "2003-12-18", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.2145, 43.167333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64157003, "NOM_USUEL": "BUZY-CENTRE", "LAT": 43.133333, "LON": -0.456667, "ALTI": 365, "MIN_DATE": "1994-01-01", "MAX_DATE": "1999-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.456667, 43.133333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64160001, "NOM_USUEL": "CAMBO-LES-BAINS", "LAT": 43.362, "LON": -1.3825, "ALTI": 69, "MIN_DATE": "1964-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.3825, 43.362 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64188002, "NOM_USUEL": "CHERAUTE", "LAT": 43.23, "LON": -0.865, "ALTI": 175, "MIN_DATE": "1989-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.865, 43.23 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64204001, "NOM_USUEL": "EAUX-BONNE", "LAT": 42.97, "LON": -0.39, "ALTI": 1450, "MIN_DATE": "1955-07-01", "MAX_DATE": "1963-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.39, 42.97 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64213001, "NOM_USUEL": "ESPELETTE", "LAT": 43.345, "LON": -1.433333, "ALTI": 106, "MIN_DATE": "1974-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.433333, 43.345 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64218001, "NOM_USUEL": "ESTERENCUBY", "LAT": 43.1, "LON": -1.196667, "ALTI": 230, "MIN_DATE": "1964-02-01", "MAX_DATE": "1991-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.196667, 43.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64224001, "NOM_USUEL": "EYSUS ECOLE", "LAT": 43.14, "LON": -0.588333, "ALTI": 260, "MIN_DATE": "1957-10-01", "MAX_DATE": "1961-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.588333, 43.14 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64233001, "NOM_USUEL": "GARLIN", "LAT": 43.551167, "LON": -0.272167, "ALTI": 209, "MIN_DATE": "1964-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.272167, 43.551167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64238001, "NOM_USUEL": "GER", "LAT": 43.238333, "LON": -0.083833, "ALTI": 410, "MIN_DATE": "2007-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.083833, 43.238333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64239001, "NOM_USUEL": "GERDEREST", "LAT": 43.411667, "LON": -0.175, "ALTI": 325, "MIN_DATE": "1974-05-01", "MAX_DATE": "1990-01-31" }, "geometry": { "type": "Point", "coordinates": [ -0.175, 43.411667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64251001, "NOM_USUEL": "GUINARTHE", "LAT": 43.386667, "LON": -0.945, "ALTI": 60, "MIN_DATE": "1986-04-01", "MAX_DATE": "1992-08-03" }, "geometry": { "type": "Point", "coordinates": [ -0.945, 43.386667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64256001, "NOM_USUEL": "HASPARREN COLLEGE SAINT-JOSEPH", "LAT": 43.386667, "LON": -1.305, "ALTI": 135, "MIN_DATE": "1965-07-01", "MAX_DATE": "1966-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.305, 43.386667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64261001, "NOM_USUEL": "HERRERE", "LAT": 43.166667, "LON": -0.558333, "ALTI": 300, "MIN_DATE": "1992-09-01", "MAX_DATE": "2006-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.558333, 43.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64265001, "NOM_USUEL": "HOSTA", "LAT": 43.16, "LON": -1.086667, "ALTI": 340, "MIN_DATE": "1964-02-01", "MAX_DATE": "2016-11-30" }, "geometry": { "type": "Point", "coordinates": [ -1.086667, 43.16 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64273001, "NOM_USUEL": "IRISSARRY", "LAT": 43.259, "LON": -1.227167, "ALTI": 201, "MIN_DATE": "1971-11-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.227167, 43.259 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64274001, "NOM_USUEL": "IROULEGUY", "LAT": 43.181667, "LON": -1.295, "ALTI": 237, "MIN_DATE": "1961-03-01", "MAX_DATE": "2017-10-31" }, "geometry": { "type": "Point", "coordinates": [ -1.295, 43.181667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64279001, "NOM_USUEL": "ITXASSOU FERME AMEZTOYA", "LAT": 43.328333, "LON": -1.403333, "ALTI": 95, "MIN_DATE": "1983-04-01", "MAX_DATE": "1986-06-30" }, "geometry": { "type": "Point", "coordinates": [ -1.403333, 43.328333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64284001, "NOM_USUEL": "JURANCON", "LAT": 43.286667, "LON": -0.386667, "ALTI": 310, "MIN_DATE": "1951-10-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.386667, 43.286667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64284002, "NOM_USUEL": "JURANCON SANATORIUM DE BEL AIR", "LAT": 43.286667, "LON": -0.386667, "ALTI": 330, "MIN_DATE": "1962-12-01", "MAX_DATE": "1963-02-28" }, "geometry": { "type": "Point", "coordinates": [ -0.386667, 43.286667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64288001, "NOM_USUEL": "LABASTIDE-CEZERACQ CURE", "LAT": 43.378333, "LON": -0.536667, "ALTI": 120, "MIN_DATE": "1956-01-01", "MAX_DATE": "1968-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.536667, 43.378333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64289001, "NOM_USUEL": "LABASTIDE-CLAIR", "LAT": 43.433333, "LON": -1.251667, "ALTI": 25, "MIN_DATE": "1974-07-01", "MAX_DATE": "2010-03-31" }, "geometry": { "type": "Point", "coordinates": [ -1.251667, 43.433333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64300001, "NOM_USUEL": "LACQ SNPA", "LAT": 43.416667, "LON": -0.62, "ALTI": 91, "MIN_DATE": "1962-01-01", "MAX_DATE": "1967-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.62, 43.416667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64301002, "NOM_USUEL": "LAGOR", "LAT": 43.3905, "LON": -0.643, "ALTI": 125, "MIN_DATE": "1956-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.643, 43.3905 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64304001, "NOM_USUEL": "LAHONCE ILE VERGERS", "LAT": 43.483333, "LON": -1.39, "ALTI": 3, "MIN_DATE": "1963-01-01", "MAX_DATE": "1973-05-31" }, "geometry": { "type": "Point", "coordinates": [ -1.39, 43.483333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64310001, "NOM_USUEL": "LANNE-EN-BARETOUS_SAPC", "LAT": 43.114667, "LON": -0.752667, "ALTI": 350, "MIN_DATE": "2019-01-08", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.752667, 43.114667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64313001, "NOM_USUEL": "LANTABAT ECOLE", "LAT": 43.25, "LON": -1.123333, "ALTI": 150, "MIN_DATE": "1954-07-01", "MAX_DATE": "1962-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.123333, 43.25 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64316001, "NOM_USUEL": "LARRAU", "LAT": 43.02, "LON": -0.96, "ALTI": 616, "MIN_DATE": "1956-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.96, 43.02 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64316002, "NOM_USUEL": "LARRAU-IRATY", "LAT": 43.038333, "LON": -1.026667, "ALTI": 1327, "MIN_DATE": "1973-07-01", "MAX_DATE": "2018-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.026667, 43.038333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64316003, "NOM_USUEL": "IRATY ORGAMBIDE", "LAT": 43.0335, "LON": -1.033833, "ALTI": 1427, "MIN_DATE": "2001-08-28", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.033833, 43.0335 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64316400, "NOM_USUEL": "Iraty", "LAT": 43.038167, "LON": -1.026667, "ALTI": 1327, "MIN_DATE": "1983-12-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.026667, 43.038167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320003, "NOM_USUEL": "LARUNS-HOURAT", "LAT": 42.983667, "LON": -0.428667, "ALTI": 522, "MIN_DATE": "1963-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.428667, 42.983667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320010, "NOM_USUEL": "LARUNS-ARTOUSTE", "LAT": 42.8865, "LON": -0.412, "ALTI": 1131, "MIN_DATE": "2016-08-01", "MAX_DATE": "2023-11-29" }, "geometry": { "type": "Point", "coordinates": [ -0.412, 42.8865 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320400, "NOM_USUEL": "Artouste", "LAT": 42.87, "LON": -0.38, "ALTI": 1900, "MIN_DATE": "1983-12-18", "MAX_DATE": "2002-11-24" }, "geometry": { "type": "Point", "coordinates": [ -0.38, 42.87 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320402, "NOM_USUEL": "Gourette", "LAT": 42.957333, "LON": -0.333167, "ALTI": 1347, "MIN_DATE": "1971-12-14", "MAX_DATE": "1997-04-20" }, "geometry": { "type": "Point", "coordinates": [ -0.333167, 42.957333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320404, "NOM_USUEL": "Gourette", "LAT": 42.950333, "LON": -0.331667, "ALTI": 1590, "MIN_DATE": "1998-01-05", "MAX_DATE": "2024-03-30" }, "geometry": { "type": "Point", "coordinates": [ -0.331667, 42.950333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64320405, "NOM_USUEL": "Artouste", "LAT": 42.9015, "LON": -0.388167, "ALTI": 1860, "MIN_DATE": "2002-12-09", "MAX_DATE": "2022-01-26" }, "geometry": { "type": "Point", "coordinates": [ -0.388167, 42.9015 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64324002, "NOM_USUEL": "LASSEUBE_SAPC", "LAT": 43.2045, "LON": -0.4855, "ALTI": 247, "MIN_DATE": "2016-07-09", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.4855, 43.2045 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64330400, "NOM_USUEL": "SOUM COUY-NIVOSE", "LAT": 42.961667, "LON": -0.721333, "ALTI": 2142, "MIN_DATE": "1997-01-29", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.721333, 42.961667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64336003, "NOM_USUEL": "LESCUN L'ABEROUAT", "LAT": 42.935, "LON": -0.633333, "ALTI": 1500, "MIN_DATE": "1973-07-01", "MAX_DATE": "1976-02-29" }, "geometry": { "type": "Point", "coordinates": [ -0.633333, 42.935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64336004, "NOM_USUEL": "LESCUN", "LAT": 42.935, "LON": -0.633333, "ALTI": 907, "MIN_DATE": "1990-05-01", "MAX_DATE": "2018-10-31" }, "geometry": { "type": "Point", "coordinates": [ -0.633333, 42.935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64339001, "NOM_USUEL": "LESTELLE-BETH", "LAT": 43.125, "LON": -0.206667, "ALTI": 315, "MIN_DATE": "1963-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.206667, 43.125 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64342001, "NOM_USUEL": "LICQ-ATHEREY", "LAT": 43.047833, "LON": -0.885667, "ALTI": 288, "MIN_DATE": "1956-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.885667, 43.047833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64368001, "NOM_USUEL": "MASPARRAUTE", "LAT": 43.39, "LON": -1.091667, "ALTI": 102, "MIN_DATE": "1973-07-01", "MAX_DATE": "1995-10-31" }, "geometry": { "type": "Point", "coordinates": [ -1.091667, 43.39 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64371001, "NOM_USUEL": "MAULEON-LICHAR", "LAT": 43.223333, "LON": -0.881667, "ALTI": 142, "MIN_DATE": "1965-12-01", "MAX_DATE": "1988-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.881667, 43.223333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64373001, "NOM_USUEL": "MAZERES-LEZONS CURE", "LAT": 43.276667, "LON": -0.35, "ALTI": 185, "MIN_DATE": "1956-01-01", "MAX_DATE": "1961-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.35, 43.276667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64379001, "NOM_USUEL": "MENDIVE_SAPC", "LAT": 43.126, "LON": -1.135167, "ALTI": 292, "MIN_DATE": "2009-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.135167, 43.126 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64393001, "NOM_USUEL": "MONEIN", "LAT": 43.298333, "LON": -0.526667, "ALTI": 241, "MIN_DATE": "1964-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.526667, 43.298333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64396001, "NOM_USUEL": "MONT-LENDRESSE", "LAT": 43.418333, "LON": -0.66, "ALTI": 88, "MIN_DATE": "1985-05-01", "MAX_DATE": "1999-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.66, 43.418333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64396002, "NOM_USUEL": "MONT-LAGOR", "LAT": 43.411667, "LON": -0.67, "ALTI": 202, "MIN_DATE": "1985-05-01", "MAX_DATE": "1999-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.67, 43.411667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64398001, "NOM_USUEL": "MONTANER", "LAT": 43.348333, "LON": 0.001667, "ALTI": 325, "MIN_DATE": "1974-02-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.001667, 43.348333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64400001, "NOM_USUEL": "MONTAUT CURE", "LAT": 43.13, "LON": -0.201667, "ALTI": 310, "MIN_DATE": "1956-01-01", "MAX_DATE": "1962-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.201667, 43.13 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64401001, "NOM_USUEL": "MONT-DISSE", "LAT": 43.548333, "LON": -0.136667, "ALTI": 156, "MIN_DATE": "1971-11-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.136667, 43.548333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64404001, "NOM_USUEL": "MONTORY CENTRE DU BOURG", "LAT": 43.096667, "LON": -0.816667, "ALTI": 250, "MIN_DATE": "1956-01-01", "MAX_DATE": "1971-09-30" }, "geometry": { "type": "Point", "coordinates": [ -0.816667, 43.096667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64422004, "NOM_USUEL": "OLORON-STE-MARI", "LAT": 43.17, "LON": -0.59, "ALTI": 235, "MIN_DATE": "1964-02-01", "MAX_DATE": "2012-10-31" }, "geometry": { "type": "Point", "coordinates": [ -0.59, 43.17 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64422007, "NOM_USUEL": "OLORON", "LAT": 43.1595, "LON": -0.5795, "ALTI": 295, "MIN_DATE": "2006-06-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.5795, 43.1595 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64430003, "NOM_USUEL": "ORTHEZ", "LAT": 43.501333, "LON": -0.755, "ALTI": 96, "MIN_DATE": "1994-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.755, 43.501333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64445011, "NOM_USUEL": "PAU-(CIMETIERE)", "LAT": 43.301667, "LON": -0.383333, "ALTI": 204, "MIN_DATE": "1995-05-01", "MAX_DATE": "2007-01-07" }, "geometry": { "type": "Point", "coordinates": [ -0.383333, 43.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64452001, "NOM_USUEL": "PONSON-DESSUS CENTRE", "LAT": 43.315, "LON": -0.055, "ALTI": 362, "MIN_DATE": "1972-01-01", "MAX_DATE": "1973-10-31" }, "geometry": { "type": "Point", "coordinates": [ -0.055, 43.315 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64453002, "NOM_USUEL": "PONTACQ_SAPC", "LAT": 43.203333, "LON": -0.113833, "ALTI": 343, "MIN_DATE": "2018-11-15", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.113833, 43.203333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64461001, "NOM_USUEL": "PUYOO-BELLOCQ", "LAT": 43.525, "LON": -0.908333, "ALTI": 41, "MIN_DATE": "1964-04-01", "MAX_DATE": "1987-01-31" }, "geometry": { "type": "Point", "coordinates": [ -0.908333, 43.525 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64475001, "NOM_USUEL": "STE-ENGRACE", "LAT": 42.996667, "LON": -0.808333, "ALTI": 630, "MIN_DATE": "1956-01-01", "MAX_DATE": "1981-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.808333, 42.996667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64475002, "NOM_USUEL": "STE-ENGRACE", "LAT": 43.0, "LON": -0.84, "ALTI": 475, "MIN_DATE": "1982-01-01", "MAX_DATE": "2009-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.84, 43.0 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64480001, "NOM_USUEL": "ST-GLADIE", "LAT": 43.380167, "LON": -0.933667, "ALTI": 73, "MIN_DATE": "1974-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.933667, 43.380167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64482001, "NOM_USUEL": "ST JAMMES", "LAT": 43.356667, "LON": -0.251667, "ALTI": 275, "MIN_DATE": "2008-07-01", "MAX_DATE": "2012-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.251667, 43.356667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64483001, "NOM_USUEL": "SAINT-JEAN-DE-LUZ CENTRE", "LAT": 43.391667, "LON": -1.655, "ALTI": 5, "MIN_DATE": "1972-05-01", "MAX_DATE": "1982-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.655, 43.391667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64484001, "NOM_USUEL": "ST-JEAN-LE-VX", "LAT": 43.168333, "LON": -1.221667, "ALTI": 173, "MIN_DATE": "1976-09-01", "MAX_DATE": "2011-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.221667, 43.168333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64485001, "NOM_USUEL": "SAINT-JEAN-PIED-DE-PORT", "LAT": 43.163333, "LON": -1.235, "ALTI": 160, "MIN_DATE": "1975-01-01", "MAX_DATE": "1976-08-31" }, "geometry": { "type": "Point", "coordinates": [ -1.235, 43.163333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64485003, "NOM_USUEL": "SAINT-JEAN-PIED-DE-PORT BOURG", "LAT": 43.163333, "LON": -1.235, "ALTI": 178, "MIN_DATE": "1960-06-01", "MAX_DATE": "1961-02-28" }, "geometry": { "type": "Point", "coordinates": [ -1.235, 43.163333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64488001, "NOM_USUEL": "SAINT-LAURENT-BRETAGNE", "LAT": 43.383333, "LON": -0.198333, "ALTI": 308, "MIN_DATE": "1961-08-01", "MAX_DATE": "1966-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.198333, 43.383333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64495001, "NOM_USUEL": "ST PEE/NIVELLE", "LAT": 43.356667, "LON": -1.565, "ALTI": 25, "MIN_DATE": "1963-01-01", "MAX_DATE": "1991-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.565, 43.356667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64504001, "NOM_USUEL": "SARE COL DE SAINT-IGNACE", "LAT": 43.313333, "LON": -1.58, "ALTI": 180, "MIN_DATE": "1954-09-01", "MAX_DATE": "1958-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.58, 43.313333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64523001, "NOM_USUEL": "SEVIGNACQ-THEZE", "LAT": 43.445, "LON": -0.258333, "ALTI": 251, "MIN_DATE": "1986-04-01", "MAX_DATE": "1997-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.258333, 43.445 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64533001, "NOM_USUEL": "TARDETS", "LAT": 43.118333, "LON": -0.858333, "ALTI": 278, "MIN_DATE": "1993-04-01", "MAX_DATE": "1994-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.858333, 43.118333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64535001, "NOM_USUEL": "TARSACQ EDF", "LAT": 43.358333, "LON": -0.538333, "ALTI": 110, "MIN_DATE": "1956-01-01", "MAX_DATE": "1958-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.538333, 43.358333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64537001, "NOM_USUEL": "TROIS-VILLES", "LAT": 43.133833, "LON": -0.876167, "ALTI": 216, "MIN_DATE": "1952-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.876167, 43.133833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64542001, "NOM_USUEL": "URDOS CENTRE", "LAT": 42.871667, "LON": -0.55, "ALTI": 760, "MIN_DATE": "1970-06-01", "MAX_DATE": "1978-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.55, 42.871667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64542002, "NOM_USUEL": "URDOS PEYRANERE", "LAT": 42.871667, "LON": -0.55, "ALTI": 1450, "MIN_DATE": "1972-05-01", "MAX_DATE": "1977-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.55, 42.871667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64542006, "NOM_USUEL": "URDOS RN134", "LAT": 42.823833, "LON": -0.559167, "ALTI": 1074, "MIN_DATE": "2005-02-01", "MAX_DATE": "2018-01-01" }, "geometry": { "type": "Point", "coordinates": [ -0.559167, 42.823833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 64543001, "NOM_USUEL": "UREPEL_SAPC", "LAT": 43.068667, "LON": -1.4155, "ALTI": 410, "MIN_DATE": "2007-04-26", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.4155, 43.068667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32001001, "NOM_USUEL": "AIGNAN AGGLOMERATION", "LAT": 43.696667, "LON": 0.081667, "ALTI": 126, "MIN_DATE": "1872-09-01", "MAX_DATE": "1901-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.081667, 43.696667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32013002, "NOM_USUEL": "AUCH GRISOUS", "LAT": 43.651667, "LON": 0.61, "ALTI": 158, "MIN_DATE": "1872-03-01", "MAX_DATE": "1954-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.61, 43.651667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32013003, "NOM_USUEL": "AUCH", "LAT": 43.648333, "LON": 0.578333, "ALTI": 162, "MIN_DATE": "1872-01-01", "MAX_DATE": "1955-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.578333, 43.648333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32060001, "NOM_USUEL": "BOUCAGNERES VILLAGE", "LAT": 43.561667, "LON": 0.613333, "ALTI": 158, "MIN_DATE": "1949-01-01", "MAX_DATE": "1953-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.613333, 43.561667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32096003, "NOM_USUEL": "CAZAUBON - DDE", "LAT": 43.937667, "LON": -0.084, "ALTI": 100, "MIN_DATE": "1872-06-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.084, 43.937667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32107001, "NOM_USUEL": "CONDOM_MAN", "LAT": 43.955, "LON": 0.383, "ALTI": 85, "MIN_DATE": "1872-06-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.383, 43.955 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32119001, "NOM_USUEL": "EAUZE - VILLE", "LAT": 43.859833, "LON": 0.074167, "ALTI": 171, "MIN_DATE": "1872-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.074167, 43.859833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32147001, "NOM_USUEL": "GIMONT", "LAT": 43.627667, "LON": 0.884167, "ALTI": 177, "MIN_DATE": "1872-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.884167, 43.627667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32190001, "NOM_USUEL": "LANNEPAX", "LAT": 43.792167, "LON": 0.208167, "ALTI": 175, "MIN_DATE": "1947-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.208167, 43.792167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32208003, "NOM_USUEL": "LECTOURE AGGLOMERATION", "LAT": 43.935, "LON": 0.62, "ALTI": 87, "MIN_DATE": "1872-06-01", "MAX_DATE": "1920-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.62, 43.935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32208004, "NOM_USUEL": "LECTOURE YDRONE", "LAT": 43.935, "LON": 0.62, "ALTI": 146, "MIN_DATE": "1949-01-01", "MAX_DATE": "1952-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.62, 43.935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32213001, "NOM_USUEL": "LOMBEZ", "LAT": 43.471167, "LON": 0.904333, "ALTI": 167, "MIN_DATE": "1872-06-01", "MAX_DATE": "2020-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.904333, 43.471167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32242001, "NOM_USUEL": "MASSEUBE - DDE", "LAT": 43.43, "LON": 0.583333, "ALTI": 200, "MIN_DATE": "1872-06-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.583333, 43.43 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32252001, "NOM_USUEL": "MIELAN", "LAT": 43.436667, "LON": 0.308333, "ALTI": 264, "MIN_DATE": "1872-06-01", "MAX_DATE": "2002-12-29" }, "geometry": { "type": "Point", "coordinates": [ 0.308333, 43.436667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32252002, "NOM_USUEL": "MIELAN AGGLOMERATION", "LAT": 43.428333, "LON": 0.305, "ALTI": 221, "MIN_DATE": "1876-09-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.305, 43.428333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32256001, "NOM_USUEL": "MIRANDE", "LAT": 43.530167, "LON": 0.400833, "ALTI": 184, "MIN_DATE": "1872-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.400833, 43.530167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32344001, "NOM_USUEL": "RISCLE BOURG", "LAT": 43.656667, "LON": -0.085, "ALTI": 113, "MIN_DATE": "1872-06-01", "MAX_DATE": "1934-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.085, 43.656667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32417001, "NOM_USUEL": "LA SAUVETAT AGGLOMERATION", "LAT": 43.851667, "LON": 0.523333, "ALTI": 290, "MIN_DATE": "1872-06-01", "MAX_DATE": "1901-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.523333, 43.851667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32462001, "NOM_USUEL": "VIC-FEZEN - DDE", "LAT": 43.761833, "LON": 0.311333, "ALTI": 132, "MIN_DATE": "1872-06-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.311333, 43.761833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32464001, "NOM_USUEL": "VILLECOMTAL-SUR-ARROS", "LAT": 43.401667, "LON": 0.2, "ALTI": 175, "MIN_DATE": "1872-06-01", "MAX_DATE": "1901-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.2, 43.401667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32005001, "NOM_USUEL": "ARBLADE-LE-HAUT BOURG", "LAT": 43.751667, "LON": -0.068333, "ALTI": 143, "MIN_DATE": "1961-02-01", "MAX_DATE": "1964-02-29" }, "geometry": { "type": "Point", "coordinates": [ -0.068333, 43.751667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32007001, "NOM_USUEL": "ARDIZAS BOURG", "LAT": 43.716667, "LON": 1.001667, "ALTI": 185, "MIN_DATE": "1968-01-01", "MAX_DATE": "1969-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.001667, 43.716667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32013004, "NOM_USUEL": "AUCH DDE", "LAT": 43.635, "LON": 0.59, "ALTI": 133, "MIN_DATE": "1954-04-01", "MAX_DATE": "1984-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.59, 43.635 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32013005, "NOM_USUEL": "AUCH", "LAT": 43.689, "LON": 0.601167, "ALTI": 122, "MIN_DATE": "1985-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.601167, 43.689 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32032001, "NOM_USUEL": "BASSOUES", "LAT": 43.578667, "LON": 0.247333, "ALTI": 222, "MIN_DATE": "1971-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.247333, 43.578667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32035001, "NOM_USUEL": "BEAUCAIRE", "LAT": 43.8425, "LON": 0.372833, "ALTI": 120, "MIN_DATE": "1965-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.372833, 43.8425 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32036001, "NOM_USUEL": "BEAUMARCHES VILLAGE", "LAT": 43.586667, "LON": 0.088333, "ALTI": 174, "MIN_DATE": "1961-02-01", "MAX_DATE": "1979-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.088333, 43.586667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32054001, "NOM_USUEL": "BIRAN", "LAT": 43.706333, "LON": 0.380833, "ALTI": 114, "MIN_DATE": "1974-01-01", "MAX_DATE": "2020-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.380833, 43.706333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32076001, "NOM_USUEL": "CASTELNAU-BARBARENS HOURONTAN", "LAT": 43.575, "LON": 0.725, "ALTI": 267, "MIN_DATE": "1965-12-01", "MAX_DATE": "1971-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.725, 43.575 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32079001, "NOM_USUEL": "CASTELNAU-D'AUZAN BOURG", "LAT": 43.95, "LON": 0.086667, "ALTI": 151, "MIN_DATE": "1961-01-01", "MAX_DATE": "1963-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.086667, 43.95 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32086001, "NOM_USUEL": "CASTEX VILLAGE", "LAT": 43.376667, "LON": 0.31, "ALTI": 305, "MIN_DATE": "1965-11-01", "MAX_DATE": "1980-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.31, 43.376667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32095001, "NOM_USUEL": "CAUSSENS", "LAT": 43.938667, "LON": 0.448, "ALTI": 184, "MIN_DATE": "1995-10-01", "MAX_DATE": "2017-04-01" }, "geometry": { "type": "Point", "coordinates": [ 0.448, 43.938667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32106001, "NOM_USUEL": "COLOGNE", "LAT": 43.721667, "LON": 0.976667, "ALTI": 190, "MIN_DATE": "1984-07-01", "MAX_DATE": "1985-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.976667, 43.721667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32107002, "NOM_USUEL": "CONDOM PEBERERE", "LAT": 43.958333, "LON": 0.37, "ALTI": 95, "MIN_DATE": "1962-05-01", "MAX_DATE": "1964-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.37, 43.958333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32107006, "NOM_USUEL": "CONDOM", "LAT": 43.974333, "LON": 0.336, "ALTI": 173, "MIN_DATE": "2004-09-09", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.336, 43.974333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32110002, "NOM_USUEL": "COURRENSAN", "LAT": 43.858167, "LON": 0.242833, "ALTI": 153, "MIN_DATE": "1995-10-01", "MAX_DATE": "2017-04-01" }, "geometry": { "type": "Point", "coordinates": [ 0.242833, 43.858167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32119003, "NOM_USUEL": "EAUZE", "LAT": 43.862333, "LON": 0.1325, "ALTI": 165, "MIN_DATE": "1995-10-01", "MAX_DATE": "2016-08-21" }, "geometry": { "type": "Point", "coordinates": [ 0.1325, 43.862333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32120001, "NOM_USUEL": "ENCAUSSE LA BORDE BASSE", "LAT": 43.7, "LON": 1.038333, "ALTI": 204, "MIN_DATE": "1969-10-01", "MAX_DATE": "1983-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.038333, 43.7 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32132001, "NOM_USUEL": "FLEURANCE", "LAT": 43.874167, "LON": 0.672833, "ALTI": 108, "MIN_DATE": "1970-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.672833, 43.874167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32147002, "NOM_USUEL": "LE BATUT", "LAT": 43.6105, "LON": 0.893667, "ALTI": 189, "MIN_DATE": "1968-01-01", "MAX_DATE": "1975-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.893667, 43.6105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32149001, "NOM_USUEL": "GONDRIN CAVE COOPERATIVE", "LAT": 43.88, "LON": 0.233333, "ALTI": 175, "MIN_DATE": "1970-01-01", "MAX_DATE": "1982-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.233333, 43.88 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32155001, "NOM_USUEL": "LE HOUGA", "LAT": 43.745833, "LON": -0.1775, "ALTI": 141, "MIN_DATE": "2006-03-16", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.1775, 43.745833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32160001, "NOM_USUEL": "ISLE-JOURDAIN", "LAT": 43.607667, "LON": 1.087833, "ALTI": 162, "MIN_DATE": "1964-10-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.087833, 43.607667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32182001, "NOM_USUEL": "LAHAS", "LAT": 43.5475, "LON": 0.887833, "ALTI": 251, "MIN_DATE": "2003-10-23", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.887833, 43.5475 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32189001, "NOM_USUEL": "LANNEMAIGNAN CACG", "LAT": 43.9, "LON": -0.198333, "ALTI": 109, "MIN_DATE": "1979-01-01", "MAX_DATE": "1983-10-31" }, "geometry": { "type": "Point", "coordinates": [ -0.198333, 43.9 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32193001, "NOM_USUEL": "LAREE ECOLE", "LAT": 43.906667, "LON": -0.053333, "ALTI": 108, "MIN_DATE": "1963-12-01", "MAX_DATE": "1966-10-31" }, "geometry": { "type": "Point", "coordinates": [ -0.053333, 43.906667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32203001, "NOM_USUEL": "LAURAET LE CHATEAU", "LAT": 43.933333, "LON": 0.246667, "ALTI": 165, "MIN_DATE": "1952-04-01", "MAX_DATE": "1968-02-29" }, "geometry": { "type": "Point", "coordinates": [ 0.246667, 43.933333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32203002, "NOM_USUEL": "LAURAET", "LAT": 43.933333, "LON": 0.248333, "ALTI": 167, "MIN_DATE": "1984-07-25", "MAX_DATE": "2001-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.248333, 43.933333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32204001, "NOM_USUEL": "LAVARDENS", "LAT": 43.7585, "LON": 0.516833, "ALTI": 210, "MIN_DATE": "1965-12-01", "MAX_DATE": "2021-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.516833, 43.7585 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32207001, "NOM_USUEL": "LEBOULIN BOURG", "LAT": 43.67, "LON": 0.675, "ALTI": 200, "MIN_DATE": "1953-10-01", "MAX_DATE": "1955-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.675, 43.67 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32208001, "NOM_USUEL": "LECTOURE PRADOULIN", "LAT": 43.935, "LON": 0.62, "ALTI": 81, "MIN_DATE": "1952-06-01", "MAX_DATE": "1984-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.62, 43.935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32208002, "NOM_USUEL": "LECTOURE", "LAT": 43.933, "LON": 0.638167, "ALTI": 179, "MIN_DATE": "1984-10-01", "MAX_DATE": "2015-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.638167, 43.933 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32209001, "NOM_USUEL": "LELIN-LAPUJOLLE BOURG", "LAT": 43.706667, "LON": -0.141667, "ALTI": 160, "MIN_DATE": "1964-10-01", "MAX_DATE": "1966-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.141667, 43.706667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32219001, "NOM_USUEL": "LUPIAC", "LAT": 43.683667, "LON": 0.1825, "ALTI": 245, "MIN_DATE": "1974-05-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.1825, 43.683667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32222001, "NOM_USUEL": "MAGNAN DAUNIAN", "LAT": 43.746667, "LON": -0.115, "ALTI": 129, "MIN_DATE": "1984-07-12", "MAX_DATE": "1987-07-09" }, "geometry": { "type": "Point", "coordinates": [ -0.115, 43.746667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32233001, "NOM_USUEL": "MARCIAC", "LAT": 43.533833, "LON": 0.161667, "ALTI": 153, "MIN_DATE": "1971-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.161667, 43.533833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32242002, "NOM_USUEL": "MASSEUBE - MAN", "LAT": 43.436667, "LON": 0.573333, "ALTI": 220, "MIN_DATE": "1962-01-01", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.573333, 43.436667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32242005, "NOM_USUEL": "MASSEUBE", "LAT": 43.436667, "LON": 0.573333, "ALTI": 220, "MIN_DATE": "1988-04-04", "MAX_DATE": "2004-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.573333, 43.436667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32242006, "NOM_USUEL": "MASSEUBE-RABANEOU", "LAT": 43.408333, "LON": 0.586667, "ALTI": 220, "MIN_DATE": "2002-01-01", "MAX_DATE": "2005-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.586667, 43.408333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32245001, "NOM_USUEL": "MAUMUSSON", "LAT": 43.604667, "LON": -0.096667, "ALTI": 164, "MIN_DATE": "1961-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.096667, 43.604667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32245002, "NOM_USUEL": "MAUMUSSON", "LAT": 43.606667, "LON": -0.096667, "ALTI": 170, "MIN_DATE": "1984-07-12", "MAX_DATE": "1994-02-05" }, "geometry": { "type": "Point", "coordinates": [ -0.096667, 43.606667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32248001, "NOM_USUEL": "MAUROUX", "LAT": 43.906833, "LON": 0.824833, "ALTI": 201, "MIN_DATE": "1989-02-02", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.824833, 43.906833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32249001, "NOM_USUEL": "MAUVEZIN", "LAT": 43.728, "LON": 0.883, "ALTI": 170, "MIN_DATE": "1970-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.883, 43.728 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32253001, "NOM_USUEL": "MIRADOUX", "LAT": 43.996667, "LON": 0.756167, "ALTI": 198, "MIN_DATE": "1970-01-01", "MAX_DATE": "2016-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.756167, 43.996667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32256002, "NOM_USUEL": "MIRANDE EN-BARBES", "LAT": 43.515, "LON": 0.403333, "ALTI": 157, "MIN_DATE": "1964-11-01", "MAX_DATE": "1966-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.403333, 43.515 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32266001, "NOM_USUEL": "MONCORNEIL", "LAT": 43.443333, "LON": 0.642833, "ALTI": 244, "MIN_DATE": "2005-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.642833, 43.443333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32268001, "NOM_USUEL": "MONFERRAN-SAVES", "LAT": 43.625, "LON": 0.986667, "ALTI": 218, "MIN_DATE": "1989-05-15", "MAX_DATE": "1991-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.986667, 43.625 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32285001, "NOM_USUEL": "MONTESQUIOU LA PLAGNE", "LAT": 43.566667, "LON": 0.311667, "ALTI": 195, "MIN_DATE": "1961-06-01", "MAX_DATE": "1964-10-31" }, "geometry": { "type": "Point", "coordinates": [ 0.311667, 43.566667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32290001, "NOM_USUEL": "MONTREAL", "LAT": 43.977, "LON": 0.183, "ALTI": 156, "MIN_DATE": "1995-10-01", "MAX_DATE": "2017-04-01" }, "geometry": { "type": "Point", "coordinates": [ 0.183, 43.977 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32305001, "NOM_USUEL": "PANJAS BOURG", "LAT": 43.82, "LON": -0.086667, "ALTI": 120, "MIN_DATE": "1961-06-01", "MAX_DATE": "1968-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.086667, 43.82 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32310001, "NOM_USUEL": "PERCHEDE", "LAT": 43.7795, "LON": -0.1475, "ALTI": 127, "MIN_DATE": "1975-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.1475, 43.7795 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32315001, "NOM_USUEL": "PEYRUSSE-GRANDE", "LAT": 43.616667, "LON": 0.222, "ALTI": 254, "MIN_DATE": "1984-09-24", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.222, 43.616667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32338001, "NOM_USUEL": "RAMOUZENS", "LAT": 43.818833, "LON": 0.180833, "ALTI": 164, "MIN_DATE": "1995-10-01", "MAX_DATE": "2016-09-07" }, "geometry": { "type": "Point", "coordinates": [ 0.180833, 43.818833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32345001, "NOM_USUEL": "LA ROMIEU LA BOURDETTE", "LAT": 43.983333, "LON": 0.496667, "ALTI": 70, "MIN_DATE": "1963-02-01", "MAX_DATE": "1964-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.496667, 43.983333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32355001, "NOM_USUEL": "SADEILLAN", "LAT": 43.399333, "LON": 0.348667, "ALTI": 263, "MIN_DATE": "2003-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.348667, 43.399333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32357001, "NOM_USUEL": "STE-ANNE", "LAT": 43.752, "LON": 0.961, "ALTI": 132, "MIN_DATE": "1995-03-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.961, 43.752 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32370001, "NOM_USUEL": "ST-CLAR", "LAT": 43.887167, "LON": 0.754667, "ALTI": 158, "MIN_DATE": "1970-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.754667, 43.887167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32377001, "NOM_USUEL": "ST-GEORGES", "LAT": 43.72, "LON": 0.951667, "ALTI": 180, "MIN_DATE": "1986-05-01", "MAX_DATE": "1995-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.951667, 43.72 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32404002, "NOM_USUEL": "ST-PUY", "LAT": 43.869167, "LON": 0.463, "ALTI": 151, "MIN_DATE": "1965-12-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.463, 43.869167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32408001, "NOM_USUEL": "SALLES - MAN", "LAT": 43.818333, "LON": -0.038333, "ALTI": 132, "MIN_DATE": "1964-11-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.038333, 43.818333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32408002, "NOM_USUEL": "SALLES-D'ARMAGN", "LAT": 43.816667, "LON": -0.038333, "ALTI": 130, "MIN_DATE": "1984-07-12", "MAX_DATE": "2004-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.038333, 43.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32410001, "NOM_USUEL": "SAMATAN", "LAT": 43.499833, "LON": 0.927167, "ALTI": 201, "MIN_DATE": "1971-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.927167, 43.499833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32412001, "NOM_USUEL": "SARAMON", "LAT": 43.521333, "LON": 0.760333, "ALTI": 197, "MIN_DATE": "1972-03-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.760333, 43.521333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32414001, "NOM_USUEL": "SARRAGACHIES", "LAT": 43.673167, "LON": -0.050833, "ALTI": 110, "MIN_DATE": "1964-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.050833, 43.673167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32426001, "NOM_USUEL": "SEISSAN PARC C.A.C.G.", "LAT": 43.491667, "LON": 0.591667, "ALTI": 180, "MIN_DATE": "1963-12-01", "MAX_DATE": "1975-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.591667, 43.491667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32445001, "NOM_USUEL": "TIESTE-URAGNOUX PANGA", "LAT": 43.523333, "LON": 0.04, "ALTI": 185, "MIN_DATE": "1984-07-12", "MAX_DATE": "1987-04-14" }, "geometry": { "type": "Point", "coordinates": [ 0.04, 43.523333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 32462003, "NOM_USUEL": "VIC-FEZENSAC", "LAT": 43.768333, "LON": 0.346667, "ALTI": 218, "MIN_DATE": "1984-09-06", "MAX_DATE": "1992-02-06" }, "geometry": { "type": "Point", "coordinates": [ 0.346667, 43.768333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94004001, "NOM_USUEL": "BOISSY-ST-LEGER", "LAT": 48.75, "LON": 2.515, "ALTI": 95, "MIN_DATE": "1894-01-01", "MAX_DATE": "1900-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.515, 48.75 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94015001, "NOM_USUEL": "BRY-SUR-MARNE", "LAT": 48.843333, "LON": 2.516667, "ALTI": 39, "MIN_DATE": "1929-01-01", "MAX_DATE": "1953-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.516667, 48.843333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94021001, "NOM_USUEL": "CHEVILLY - BG", "LAT": 48.773333, "LON": 2.351667, "ALTI": 90, "MIN_DATE": "1899-05-14", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.351667, 48.773333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94021002, "NOM_USUEL": "CHEVILLY-LARUE", "LAT": 48.760333, "LON": 2.366333, "ALTI": 83, "MIN_DATE": "1921-01-01", "MAX_DATE": "2014-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.366333, 48.760333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94022001, "NOM_USUEL": "CHOISY-LE-ROI", "LAT": 48.76, "LON": 2.418, "ALTI": 34, "MIN_DATE": "1921-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.418, 48.76 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94028001, "NOM_USUEL": "CRETEIL", "LAT": 48.7835, "LON": 2.455, "ALTI": 33, "MIN_DATE": "1925-02-01", "MAX_DATE": "2014-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.455, 48.7835 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94028002, "NOM_USUEL": "CRETEIL -HALAGE", "LAT": 48.793333, "LON": 2.46, "ALTI": 35, "MIN_DATE": "1946-09-01", "MAX_DATE": "1950-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.46, 48.793333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94034001, "NOM_USUEL": "FRESNES", "LAT": 48.755333, "LON": 2.321667, "ALTI": 67, "MIN_DATE": "1921-01-01", "MAX_DATE": "2018-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.321667, 48.755333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94041001, "NOM_USUEL": "IVRY-SUR-SEINE", "LAT": 48.807, "LON": 2.397167, "ALTI": 40, "MIN_DATE": "1921-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.397167, 48.807 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94042001, "NOM_USUEL": "JOINVILLE", "LAT": 48.813667, "LON": 2.462667, "ALTI": 37, "MIN_DATE": "1921-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.462667, 48.813667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94044001, "NOM_USUEL": "LIMEIL", "LAT": 48.751167, "LON": 2.485833, "ALTI": 45, "MIN_DATE": "1921-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.485833, 48.751167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94060001, "NOM_USUEL": "LA QUEUE - BG", "LAT": 48.786667, "LON": 2.578333, "ALTI": 97, "MIN_DATE": "1902-11-01", "MAX_DATE": "1910-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.578333, 48.786667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94067001, "NOM_USUEL": "ST-MANDE", "LAT": 48.845, "LON": 2.415, "ALTI": 50, "MIN_DATE": "1921-01-01", "MAX_DATE": "1936-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.415, 48.845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94068001, "NOM_USUEL": "ST-MAUR", "LAT": 48.808667, "LON": 2.492333, "ALTI": 48, "MIN_DATE": "1872-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.492333, 48.808667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94068002, "NOM_USUEL": "ST-MAUR - EAUX", "LAT": 48.798333, "LON": 2.505, "ALTI": 37, "MIN_DATE": "1871-12-01", "MAX_DATE": "1918-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.505, 48.798333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94076001, "NOM_USUEL": "VILLEJUIF", "LAT": 48.786, "LON": 2.353, "ALTI": 106, "MIN_DATE": "1921-01-01", "MAX_DATE": "2014-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.353, 48.786 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94080001, "NOM_USUEL": "VINCENNES", "LAT": 48.848333, "LON": 2.438333, "ALTI": 62, "MIN_DATE": "1927-01-01", "MAX_DATE": "1960-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.438333, 48.848333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94047001, "NOM_USUEL": "MANDRES", "LAT": 48.709167, "LON": 2.549833, "ALTI": 93, "MIN_DATE": "1988-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.549833, 48.709167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94052001, "NOM_USUEL": "NOGENT", "LAT": 48.838333, "LON": 2.483333, "ALTI": 60, "MIN_DATE": "1952-03-01", "MAX_DATE": "1956-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.483333, 48.838333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94055001, "NOM_USUEL": "ORMESSON", "LAT": 48.777, "LON": 2.5205, "ALTI": 55, "MIN_DATE": "1992-03-01", "MAX_DATE": "2019-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.5205, 48.777 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94060002, "NOM_USUEL": "LA QUEUE-EN-B.", "LAT": 48.793333, "LON": 2.578333, "ALTI": 100, "MIN_DATE": "1989-08-01", "MAX_DATE": "2002-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.578333, 48.793333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94060003, "NOM_USUEL": "LA QUEUE-EN-BRIE", "LAT": 48.769333, "LON": 2.576333, "ALTI": 107, "MIN_DATE": "2005-11-01", "MAX_DATE": "2006-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.576333, 48.769333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94065001, "NOM_USUEL": "RUNGIS", "LAT": 48.746667, "LON": 2.351667, "ALTI": 84, "MIN_DATE": "1977-01-01", "MAX_DATE": "1977-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.351667, 48.746667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 94073001, "NOM_USUEL": "THIAIS - BG", "LAT": 48.761667, "LON": 2.388333, "ALTI": 67, "MIN_DATE": "1950-01-01", "MAX_DATE": "1953-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.388333, 48.761667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7003001, "NOM_USUEL": "AIZAC", "LAT": 44.716667, "LON": 4.416667, "ALTI": 430, "MIN_DATE": "1928-01-01", "MAX_DATE": "1960-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.416667, 44.716667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7005001, "NOM_USUEL": "ALBA LA ROMAINE", "LAT": 44.539833, "LON": 4.5825, "ALTI": 223, "MIN_DATE": "1949-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.5825, 44.539833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7010003, "NOM_USUEL": "ANNONAY MALLEVAL COLLEGE", "LAT": 45.241667, "LON": 4.668333, "ALTI": 350, "MIN_DATE": "1930-05-01", "MAX_DATE": "1966-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.668333, 45.241667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7010004, "NOM_USUEL": "ANNONAY", "LAT": 45.241667, "LON": 4.668333, "ALTI": 350, "MIN_DATE": "1928-01-01", "MAX_DATE": "1954-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.668333, 45.241667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7019001, "NOM_USUEL": "AUBENAS/ECOLES", "LAT": 44.616667, "LON": 4.388333, "ALTI": 260, "MIN_DATE": "1931-01-01", "MAX_DATE": "1969-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.388333, 44.616667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7019002, "NOM_USUEL": "AUBENAS RUE GEORGES COUDERC", "LAT": 44.613333, "LON": 4.393333, "ALTI": 295, "MIN_DATE": "1928-01-01", "MAX_DATE": "1974-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.393333, 44.613333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7019003, "NOM_USUEL": "AUBENAS PONT D'AUBENAS", "LAT": 44.616667, "LON": 4.388333, "ALTI": 310, "MIN_DATE": "1930-08-15", "MAX_DATE": "1934-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.388333, 44.616667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7033001, "NOM_USUEL": "BESSAS", "LAT": 44.34, "LON": 4.298667, "ALTI": 251, "MIN_DATE": "1933-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.298667, 44.34 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7042001, "NOM_USUEL": "BOURG ST ANDEOL", "LAT": 44.372333, "LON": 4.6415, "ALTI": 74, "MIN_DATE": "1930-05-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.6415, 44.372333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7064001, "NOM_USUEL": "CHEYLARD SA", "LAT": 44.914833, "LON": 4.4375, "ALTI": 418, "MIN_DATE": "1901-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.4375, 44.914833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7064002, "NOM_USUEL": "CHEYLARD", "LAT": 44.916667, "LON": 4.4, "ALTI": 450, "MIN_DATE": "1931-01-01", "MAX_DATE": "1950-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.4, 44.916667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7110001, "NOM_USUEL": "JOYEUSE", "LAT": 44.477667, "LON": 4.230833, "ALTI": 212, "MIN_DATE": "1934-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.230833, 44.477667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7110002, "NOM_USUEL": "JOYEUSE ECOLE", "LAT": 44.48, "LON": 4.238333, "ALTI": 170, "MIN_DATE": "1928-01-01", "MAX_DATE": "1963-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.238333, 44.48 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7110003, "NOM_USUEL": "JOYEUSE", "LAT": 44.48, "LON": 4.238333, "ALTI": 160, "MIN_DATE": "1930-07-01", "MAX_DATE": "1951-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.238333, 44.48 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7129001, "NOM_USUEL": "LAMASTRE", "LAT": 44.990667, "LON": 4.5895, "ALTI": 367, "MIN_DATE": "1901-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.5895, 44.990667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7144001, "NOM_USUEL": "LOUBARESSE", "LAT": 44.599833, "LON": 4.049333, "ALTI": 1220, "MIN_DATE": "1945-04-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 4.049333, 44.599833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7153001, "NOM_USUEL": "MAYRES", "LAT": 44.667167, "LON": 4.113, "ALTI": 579, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.113, 44.667167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7154004, "NOM_USUEL": "MAZAN-L'ABBAYE PRESBYTERE", "LAT": 44.726667, "LON": 4.086667, "ALTI": 1123, "MIN_DATE": "1947-01-10", "MAX_DATE": "1949-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.086667, 44.726667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7159001, "NOM_USUEL": "MIRABEL SA", "LAT": 44.5815, "LON": 4.497333, "ALTI": 275, "MIN_DATE": "1929-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.497333, 44.5815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7161001, "NOM_USUEL": "MONTPEZAT SA", "LAT": 44.715667, "LON": 4.207, "ALTI": 602, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.207, 44.715667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7161003, "NOM_USUEL": "MONTPEZAT-SOUS-BAUZON", "LAT": 44.711667, "LON": 4.205, "ALTI": 1000, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.205, 44.711667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7186001, "NOM_USUEL": "PRIVAS", "LAT": 44.718833, "LON": 4.596333, "ALTI": 282, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.596333, 44.718833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7186002, "NOM_USUEL": "PRIVAS", "LAT": 44.736667, "LON": 4.601667, "ALTI": 300, "MIN_DATE": "1865-06-30", "MAX_DATE": "1968-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.601667, 44.736667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7186005, "NOM_USUEL": "PRIVAS", "LAT": 44.736667, "LON": 4.596667, "ALTI": 275, "MIN_DATE": "1849-01-01", "MAX_DATE": "1849-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.596667, 44.736667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7204001, "NOM_USUEL": "ECOLE ST AGREVE", "LAT": 45.008333, "LON": 4.398333, "ALTI": 1050, "MIN_DATE": "1928-01-01", "MAX_DATE": "1974-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.398333, 45.008333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7204002, "NOM_USUEL": "LICHESSOL", "LAT": 44.982, "LON": 4.431167, "ALTI": 1050, "MIN_DATE": "1936-01-01", "MAX_DATE": "1982-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.431167, 44.982 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7204003, "NOM_USUEL": "ST-AGREVE", "LAT": 45.008333, "LON": 4.398333, "ALTI": 1080, "MIN_DATE": "1901-01-01", "MAX_DATE": "1924-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.398333, 45.008333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7235003, "NOM_USUEL": "SAINTE-EULALIE PRINCES", "LAT": 44.81, "LON": 4.188333, "ALTI": 1350, "MIN_DATE": "1928-01-01", "MAX_DATE": "1963-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.188333, 44.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7236002, "NOM_USUEL": "SAINT-FELICIEN ECOLE", "LAT": 45.085, "LON": 4.628333, "ALTI": 540, "MIN_DATE": "1901-01-01", "MAX_DATE": "1963-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.628333, 45.085 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7262003, "NOM_USUEL": "SAINT-LAURENT-LES-BAINS", "LAT": 44.606667, "LON": 3.97, "ALTI": 1082, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.97, 44.606667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7262004, "NOM_USUEL": "ST-LAURENT-LES-BAINS BARAQUE", "LAT": 44.606667, "LON": 3.97, "ALTI": 1095, "MIN_DATE": "1948-07-01", "MAX_DATE": "1949-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.97, 44.606667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7262005, "NOM_USUEL": "SAINT-LAURENT-LES-BAINS BOURG", "LAT": 44.606667, "LON": 3.97, "ALTI": 800, "MIN_DATE": "1928-01-01", "MAX_DATE": "1933-06-30" }, "geometry": { "type": "Point", "coordinates": [ 3.97, 44.606667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7265001, "NOM_USUEL": "ST-MARCEL ANNONAY", "LAT": 45.296167, "LON": 4.641833, "ALTI": 484, "MIN_DATE": "1946-01-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 4.641833, 45.296167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7279001, "NOM_USUEL": "ST-MONTAN", "LAT": 44.441833, "LON": 4.636333, "ALTI": 130, "MIN_DATE": "1945-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.636333, 44.441833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7281001, "NOM_USUEL": "SAINT-PERAY FRUITCOOP", "LAT": 44.945, "LON": 4.843333, "ALTI": 120, "MIN_DATE": "1947-01-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.843333, 44.945 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7286001, "NOM_USUEL": "ST PIERREVILLE", "LAT": 44.815, "LON": 4.488333, "ALTI": 600, "MIN_DATE": "1928-01-01", "MAX_DATE": "1974-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.488333, 44.815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7286002, "NOM_USUEL": "ST-PIERREVILLE", "LAT": 44.8145, "LON": 4.4845, "ALTI": 559, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.4845, 44.8145 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7293001, "NOM_USUEL": "ST ROMAIN", "LAT": 44.976667, "LON": 4.798333, "ALTI": 600, "MIN_DATE": "1948-01-01", "MAX_DATE": "1961-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.798333, 44.976667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7319001, "NOM_USUEL": "FRAYOL", "LAT": 44.551667, "LON": 4.685, "ALTI": 71, "MIN_DATE": "1935-02-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.685, 44.551667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7324001, "NOM_USUEL": "TOURNON", "LAT": 45.065, "LON": 4.835, "ALTI": 123, "MIN_DATE": "1901-01-01", "MAX_DATE": "1983-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.835, 45.065 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7326003, "NOM_USUEL": "USCLADES-ET-RIEUTORD", "LAT": 44.775, "LON": 4.156667, "ALTI": 1270, "MIN_DATE": "1936-01-01", "MAX_DATE": "1937-12-30" }, "geometry": { "type": "Point", "coordinates": [ 4.156667, 44.775 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7329001, "NOM_USUEL": "VALGORGE", "LAT": 44.586833, "LON": 4.129833, "ALTI": 546, "MIN_DATE": "1901-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.129833, 44.586833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7330001, "NOM_USUEL": "VALLON-PONT-D'ARC RUE TEMPLE", "LAT": 44.406667, "LON": 4.395, "ALTI": 114, "MIN_DATE": "1947-01-01", "MAX_DATE": "1977-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.395, 44.406667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7331001, "NOM_USUEL": "VALS-LES-BAINS", "LAT": 44.656667, "LON": 4.368333, "ALTI": 250, "MIN_DATE": "1867-01-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 4.368333, 44.656667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7338001, "NOM_USUEL": "VERNOUX", "LAT": 44.8995, "LON": 4.652333, "ALTI": 561, "MIN_DATE": "1892-01-04", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.652333, 44.8995 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7345001, "NOM_USUEL": "VION", "LAT": 45.116667, "LON": 4.8, "ALTI": 129, "MIN_DATE": "1932-04-01", "MAX_DATE": "1936-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.8, 45.116667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7347001, "NOM_USUEL": "VOCANCE", "LAT": 45.201167, "LON": 4.554333, "ALTI": 529, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.554333, 45.201167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7005002, "NOM_USUEL": "ALBA SA", "LAT": 44.538833, "LON": 4.582833, "ALTI": 223, "MIN_DATE": "1992-12-01", "MAX_DATE": "2019-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.582833, 44.538833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7010001, "NOM_USUEL": "ANNONAY", "LAT": 45.246167, "LON": 4.6705, "ALTI": 336, "MIN_DATE": "1973-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.6705, 45.246167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7010002, "NOM_USUEL": "ANNONAY LES PILLES", "LAT": 45.243333, "LON": 4.668333, "ALTI": 384, "MIN_DATE": "1959-01-01", "MAX_DATE": "1973-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.668333, 45.243333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7011002, "NOM_USUEL": "ANTRAIGUES", "LAT": 44.719167, "LON": 4.352167, "ALTI": 428, "MIN_DATE": "1953-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.352167, 44.719167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7011004, "NOM_USUEL": "ANTRAIGUES SA", "LAT": 44.712167, "LON": 4.352167, "ALTI": 600, "MIN_DATE": "1992-11-01", "MAX_DATE": "2021-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.352167, 44.712167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7012001, "NOM_USUEL": "ARCENS", "LAT": 44.891333, "LON": 4.307167, "ALTI": 662, "MIN_DATE": "1960-05-01", "MAX_DATE": "2019-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.307167, 44.891333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7015001, "NOM_USUEL": "ARRAS-SUR-RHONE NORD - RMC", "LAT": 45.141667, "LON": 4.808333, "ALTI": 127, "MIN_DATE": "1966-03-14", "MAX_DATE": "1973-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.808333, 45.141667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7019005, "NOM_USUEL": "AUBENAS SA", "LAT": 44.601667, "LON": 4.409833, "ALTI": 176, "MIN_DATE": "1969-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.409833, 44.601667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7025001, "NOM_USUEL": "BARNAS RAD", "LAT": 44.666, "LON": 4.159833, "ALTI": 480, "MIN_DATE": "1991-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.159833, 44.666 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7026001, "NOM_USUEL": "BEAGE", "LAT": 44.848333, "LON": 4.123333, "ALTI": 1225, "MIN_DATE": "1953-06-22", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.123333, 44.848333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7032001, "NOM_USUEL": "BERZEME", "LAT": 44.651667, "LON": 4.563333, "ALTI": 740, "MIN_DATE": "1959-07-01", "MAX_DATE": "1966-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.563333, 44.651667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7032002, "NOM_USUEL": "BERZEME RAD", "LAT": 44.628333, "LON": 4.566333, "ALTI": 650, "MIN_DATE": "1988-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.566333, 44.628333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7032003, "NOM_USUEL": "BERZEME SA", "LAT": 44.6285, "LON": 4.5665, "ALTI": 760, "MIN_DATE": "1995-12-01", "MAX_DATE": "2010-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.5665, 44.6285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7038001, "NOM_USUEL": "BORNE", "LAT": 44.636667, "LON": 4.085, "ALTI": 1230, "MIN_DATE": "1965-05-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.085, 44.636667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7051001, "NOM_USUEL": "CHAMPAGNE RMC", "LAT": 45.273333, "LON": 4.8, "ALTI": 140, "MIN_DATE": "1966-01-01", "MAX_DATE": "1973-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.8, 45.273333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7064003, "NOM_USUEL": "LE CHEYLARD RMC", "LAT": 44.906667, "LON": 4.418333, "ALTI": 430, "MIN_DATE": "1971-09-21", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.418333, 44.906667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7066001, "NOM_USUEL": "CHOMERAC SA_RCE", "LAT": 44.6995, "LON": 4.648333, "ALTI": 216, "MIN_DATE": "1970-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.648333, 44.6995 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7066800, "NOM_USUEL": "CHOMERAC SA_DOUBLE", "LAT": 44.697667, "LON": 4.649167, "ALTI": 212, "MIN_DATE": "2018-05-01", "MAX_DATE": "2021-01-07" }, "geometry": { "type": "Point", "coordinates": [ 4.649167, 44.697667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7068001, "NOM_USUEL": "COLOMBIER JEUNE RAD", "LAT": 45.0155, "LON": 4.671167, "ALTI": 566, "MIN_DATE": "1972-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.671167, 45.0155 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7069001, "NOM_USUEL": "COLOMBIER VIEUX SA", "LAT": 45.063667, "LON": 4.698, "ALTI": 408, "MIN_DATE": "1999-05-01", "MAX_DATE": "2021-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.698, 45.063667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7072001, "NOM_USUEL": "COUX RMC", "LAT": 44.733333, "LON": 4.621667, "ALTI": 201, "MIN_DATE": "1972-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.621667, 44.733333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7075001, "NOM_USUEL": "CROS GEORAND", "LAT": 44.780167, "LON": 4.099667, "ALTI": 1021, "MIN_DATE": "1952-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.099667, 44.780167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7075002, "NOM_USUEL": "CROS", "LAT": 44.8, "LON": 4.1, "ALTI": 1050, "MIN_DATE": "1968-11-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.1, 44.8 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7080001, "NOM_USUEL": "DEVESSET BOURG", "LAT": 45.066667, "LON": 4.386667, "ALTI": 1150, "MIN_DATE": "1964-10-02", "MAX_DATE": "1969-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.386667, 45.066667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7084001, "NOM_USUEL": "ECLASSAN RMC", "LAT": 45.158333, "LON": 4.761667, "ALTI": 440, "MIN_DATE": "1966-01-01", "MAX_DATE": "1973-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.761667, 45.158333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7088001, "NOM_USUEL": "FAUGERES", "LAT": 44.474667, "LON": 4.136167, "ALTI": 430, "MIN_DATE": "2005-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.136167, 44.474667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7090001, "NOM_USUEL": "FLAVIAC LE PARADIS", "LAT": 44.748333, "LON": 4.671667, "ALTI": 164, "MIN_DATE": "1961-04-11", "MAX_DATE": "1976-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.671667, 44.748333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7094001, "NOM_USUEL": "GILHAC-ET-BRUZAC", "LAT": 44.86, "LON": 4.728333, "ALTI": 425, "MIN_DATE": "1962-06-01", "MAX_DATE": "1964-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.728333, 44.86 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7096001, "NOM_USUEL": "GLUIRAS RAD", "LAT": 44.839333, "LON": 4.524, "ALTI": 760, "MIN_DATE": "2004-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.524, 44.839333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7099001, "NOM_USUEL": "GRAS", "LAT": 44.429, "LON": 4.5655, "ALTI": 341, "MIN_DATE": "1984-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.5655, 44.429 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7101001, "NOM_USUEL": "GROSPIERRES", "LAT": 44.411333, "LON": 4.300833, "ALTI": 127, "MIN_DATE": "1979-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.300833, 44.411333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7101002, "NOM_USUEL": "GROSPIERRES SA", "LAT": 44.4115, "LON": 4.295833, "ALTI": 107, "MIN_DATE": "1993-03-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.295833, 44.4115 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7105001, "NOM_USUEL": "ISSANLAS", "LAT": 44.773167, "LON": 3.981667, "ALTI": 1215, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.981667, 44.773167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7105003, "NOM_USUEL": "ISSANLAS_SAPC", "LAT": 44.7555, "LON": 3.975333, "ALTI": 1264, "MIN_DATE": "2004-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.975333, 44.7555 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7107001, "NOM_USUEL": "JAUJAC", "LAT": 44.632833, "LON": 4.222167, "ALTI": 550, "MIN_DATE": "1993-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.222167, 44.632833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7117001, "NOM_USUEL": "LABLACHERE DROME", "LAT": 44.461333, "LON": 4.234833, "ALTI": 265, "MIN_DATE": "1991-09-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.234833, 44.461333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7117002, "NOM_USUEL": "LABLACHERE", "LAT": 44.480833, "LON": 4.208333, "ALTI": 295, "MIN_DATE": "1958-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.208333, 44.480833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7119001, "NOM_USUEL": "LAC ISSARLES", "LAT": 44.822, "LON": 4.0775, "ALTI": 1056, "MIN_DATE": "1951-10-11", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.0775, 44.822 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7128001, "NOM_USUEL": "LALOUVESC", "LAT": 45.117833, "LON": 4.535, "ALTI": 1090, "MIN_DATE": "1956-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.535, 45.117833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7131001, "NOM_USUEL": "LANAS SYN", "LAT": 44.537167, "LON": 4.368167, "ALTI": 265, "MIN_DATE": "1990-11-13", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.368167, 44.537167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7132001, "NOM_USUEL": "LARGENTIERE BEDERNET", "LAT": 44.54, "LON": 4.29, "ALTI": 220, "MIN_DATE": "1980-06-01", "MAX_DATE": "1984-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.29, 44.54 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7153002, "NOM_USUEL": "MAYRES EDF", "LAT": 44.665, "LON": 4.113333, "ALTI": 550, "MIN_DATE": "1953-01-01", "MAX_DATE": "1963-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.113333, 44.665 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7154003, "NOM_USUEL": "MAZAN S.A.", "LAT": 44.743333, "LON": 4.128333, "ALTI": 1185, "MIN_DATE": "1992-12-01", "MAX_DATE": "2003-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.128333, 44.743333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7154005, "NOM_USUEL": "MAZAN ABBAYE RAD", "LAT": 44.733833, "LON": 4.083833, "ALTI": 1240, "MIN_DATE": "2003-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.083833, 44.733833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7161002, "NOM_USUEL": "MONTPEZAT", "LAT": 44.703333, "LON": 4.229667, "ALTI": 491, "MIN_DATE": "1954-03-23", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.229667, 44.703333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7168001, "NOM_USUEL": "ORGNAC AVEN", "LAT": 44.288333, "LON": 4.421667, "ALTI": 230, "MIN_DATE": "1970-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.421667, 44.288333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7172001, "NOM_USUEL": "PEAUGRES", "LAT": 45.291667, "LON": 4.75, "ALTI": 366, "MIN_DATE": "1985-07-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.75, 45.291667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7172002, "NOM_USUEL": "PEAUGRES RAD", "LAT": 45.286167, "LON": 4.705833, "ALTI": 480, "MIN_DATE": "2003-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.705833, 45.286167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7173001, "NOM_USUEL": "PEREYRES", "LAT": 44.789, "LON": 4.255333, "ALTI": 952, "MIN_DATE": "1965-10-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.255333, 44.789 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7185001, "NOM_USUEL": "PREAUX SA", "LAT": 45.14, "LON": 4.665, "ALTI": 525, "MIN_DATE": "1995-01-01", "MAX_DATE": "2021-03-01" }, "geometry": { "type": "Point", "coordinates": [ 4.665, 45.14 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7187001, "NOM_USUEL": "CROIX MILLET", "LAT": 44.606333, "LON": 4.241333, "ALTI": 779, "MIN_DATE": "2009-07-10", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.241333, 44.606333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7192001, "NOM_USUEL": "ROCHEPAULE SA", "LAT": 45.081667, "LON": 4.453333, "ALTI": 1055, "MIN_DATE": "1994-12-01", "MAX_DATE": "2010-04-01" }, "geometry": { "type": "Point", "coordinates": [ 4.453333, 45.081667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7193001, "NOM_USUEL": "ROCHER LES CEDRES SANA.", "LAT": 44.576667, "LON": 4.283333, "ALTI": 390, "MIN_DATE": "1955-10-11", "MAX_DATE": "1975-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.283333, 44.576667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7193002, "NOM_USUEL": "ROCHER RMC", "LAT": 44.576667, "LON": 4.283333, "ALTI": 360, "MIN_DATE": "1970-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.283333, 44.576667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7199002, "NOM_USUEL": "ROSIERES", "LAT": 44.4955, "LON": 4.2525, "ALTI": 226, "MIN_DATE": "1999-01-01", "MAX_DATE": "2017-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.2525, 44.4955 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7202001, "NOM_USUEL": "SABLIERES", "LAT": 44.546667, "LON": 4.09, "ALTI": 400, "MIN_DATE": "1958-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.09, 44.546667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7202002, "NOM_USUEL": "SABLIERES OARA", "LAT": 44.533, "LON": 4.0725, "ALTI": 540, "MIN_DATE": "1991-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.0725, 44.533 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7203001, "NOM_USUEL": "SAGNES-ET-GOUDOULET TABAC", "LAT": 44.79, "LON": 4.226667, "ALTI": 1230, "MIN_DATE": "1953-06-17", "MAX_DATE": "1970-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.226667, 44.79 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7204005, "NOM_USUEL": "ST-AGREVE", "LAT": 45.012167, "LON": 4.401, "ALTI": 1072, "MIN_DATE": "1982-01-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.401, 45.012167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7204008, "NOM_USUEL": "ST-AGREVE RAD", "LAT": 44.997833, "LON": 4.368, "ALTI": 1014, "MIN_DATE": "2005-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.368, 44.997833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7207001, "NOM_USUEL": "SAINT-ALBAN-AURIOLLES BOURG", "LAT": 44.425, "LON": 4.298333, "ALTI": 110, "MIN_DATE": "1970-10-01", "MAX_DATE": "1974-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.298333, 44.425 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7217001, "NOM_USUEL": "SAINT-BARTHELEMY-LE-PLAIN", "LAT": 45.053333, "LON": 4.748333, "ALTI": 160, "MIN_DATE": "1953-04-01", "MAX_DATE": "1972-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.748333, 45.053333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7225001, "NOM_USUEL": "ST-CLAIR S.A.", "LAT": 45.27, "LON": 4.681667, "ALTI": 420, "MIN_DATE": "1994-10-01", "MAX_DATE": "2003-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.681667, 45.27 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7228001, "NOM_USUEL": "ST-DESIRAT SA", "LAT": 45.260333, "LON": 4.783667, "ALTI": 275, "MIN_DATE": "1994-06-01", "MAX_DATE": "2021-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.783667, 45.260333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7230001, "NOM_USUEL": "SAINT-ETIENNE-DE-BOULOGNE", "LAT": 44.701667, "LON": 4.458333, "ALTI": 500, "MIN_DATE": "1959-01-01", "MAX_DATE": "1959-10-20" }, "geometry": { "type": "Point", "coordinates": [ 4.458333, 44.701667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7230002, "NOM_USUEL": "ESCRINET SA", "LAT": 44.715333, "LON": 4.4905, "ALTI": 737, "MIN_DATE": "1992-12-01", "MAX_DATE": "2017-01-01" }, "geometry": { "type": "Point", "coordinates": [ 4.4905, 44.715333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7232001, "NOM_USUEL": "ST-ETIENNE LUGDARES", "LAT": 44.651333, "LON": 3.9485, "ALTI": 1022, "MIN_DATE": "1950-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.9485, 44.651333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7234001, "NOM_USUEL": "SAINT-ETIENNE-DE-VALOUX BOURG", "LAT": 45.245, "LON": 4.78, "ALTI": 226, "MIN_DATE": "1959-01-01", "MAX_DATE": "1961-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.78, 45.245 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7235002, "NOM_USUEL": "SAINTE-EULALIE", "LAT": 44.81, "LON": 4.188333, "ALTI": 1400, "MIN_DATE": "1962-12-01", "MAX_DATE": "1970-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.188333, 44.81 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7236001, "NOM_USUEL": "ST FELICIEN", "LAT": 45.085, "LON": 4.628333, "ALTI": 535, "MIN_DATE": "1955-01-01", "MAX_DATE": "1976-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.628333, 45.085 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7237001, "NOM_USUEL": "ST-FORTUNAT", "LAT": 44.816667, "LON": 4.661667, "ALTI": 205, "MIN_DATE": "1995-07-01", "MAX_DATE": "2007-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.661667, 44.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7240001, "NOM_USUEL": "ST-GEORGES BAIN", "LAT": 44.860333, "LON": 4.8325, "ALTI": 112, "MIN_DATE": "1950-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.8325, 44.860333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7255001, "NOM_USUEL": "SAINT-JULIEN-EN-SAINT-ALBAN", "LAT": 44.758333, "LON": 4.688333, "ALTI": 200, "MIN_DATE": "1994-06-01", "MAX_DATE": "1995-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.688333, 44.758333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7261001, "NOM_USUEL": "ST-LAURENT PAPE", "LAT": 44.817833, "LON": 4.746833, "ALTI": 112, "MIN_DATE": "1950-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.746833, 44.817833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7262001, "NOM_USUEL": "ST-LAURENT BAIN", "LAT": 44.576833, "LON": 3.936167, "ALTI": 803, "MIN_DATE": "1965-05-01", "MAX_DATE": "2011-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.936167, 44.576833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7262002, "NOM_USUEL": "SAINT-LAURENT-LES-BAINS BOURG", "LAT": 44.606667, "LON": 3.97, "ALTI": 840, "MIN_DATE": "1950-01-01", "MAX_DATE": "1969-11-30" }, "geometry": { "type": "Point", "coordinates": [ 3.97, 44.606667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7262006, "NOM_USUEL": "ST LAURENT BAINS", "LAT": 44.584333, "LON": 3.948667, "ALTI": 912, "MIN_DATE": "2011-10-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.948667, 44.584333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7265003, "NOM_USUEL": "ST MARCEL ANNONAY- LES FILTRES", "LAT": 45.286167, "LON": 4.637833, "ALTI": 445, "MIN_DATE": "2010-09-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 4.637833, 45.286167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7273001, "NOM_USUEL": "ST-MAURICE IBIE", "LAT": 44.501333, "LON": 4.481333, "ALTI": 238, "MIN_DATE": "2006-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.481333, 44.501333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7284001, "NOM_USUEL": "ST-PIERRE-ST-JEAN", "LAT": 44.456667, "LON": 4.108333, "ALTI": 650, "MIN_DATE": "1960-01-01", "MAX_DATE": "1985-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.108333, 44.456667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7284002, "NOM_USUEL": "ST-PIERRE-ST-JEAN", "LAT": 44.449333, "LON": 4.1165, "ALTI": 315, "MIN_DATE": "2005-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.1165, 44.449333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7285001, "NOM_USUEL": "SAINT-PIERRE-SUR-DOUX BG", "LAT": 45.12, "LON": 4.463333, "ALTI": 925, "MIN_DATE": "1961-01-01", "MAX_DATE": "1976-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.463333, 45.12 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7286003, "NOM_USUEL": "SAINT-PIERREVILLE EDF", "LAT": 44.815, "LON": 4.488333, "ALTI": 550, "MIN_DATE": "1961-01-01", "MAX_DATE": "1962-01-31" }, "geometry": { "type": "Point", "coordinates": [ 4.488333, 44.815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7286004, "NOM_USUEL": "ST PVILLE S.A.", "LAT": 44.82, "LON": 4.488333, "ALTI": 640, "MIN_DATE": "1991-01-01", "MAX_DATE": "2004-12-03" }, "geometry": { "type": "Point", "coordinates": [ 4.488333, 44.82 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7294001, "NOM_USUEL": "ST-SAUVEUR SA", "LAT": 44.296, "LON": 4.26, "ALTI": 149, "MIN_DATE": "2000-05-01", "MAX_DATE": "2021-04-01" }, "geometry": { "type": "Point", "coordinates": [ 4.26, 44.296 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7295001, "NOM_USUEL": "SAINT-SAUVEUR-DE-MONTAGUT", "LAT": 44.833333, "LON": 4.5, "ALTI": 216, "MIN_DATE": "1959-01-01", "MAX_DATE": "1969-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.5, 44.833333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7301001, "NOM_USUEL": "ST-VICTOR", "LAT": 45.096667, "LON": 4.696667, "ALTI": 500, "MIN_DATE": "1980-01-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.696667, 45.096667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7301002, "NOM_USUEL": "ST-VICTOR", "LAT": 45.110167, "LON": 4.682667, "ALTI": 556, "MIN_DATE": "1989-01-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 4.682667, 45.110167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7303001, "NOM_USUEL": "ST-VINCENT DE D", "LAT": 44.818333, "LON": 4.646667, "ALTI": 150, "MIN_DATE": "1984-01-01", "MAX_DATE": "1995-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.646667, 44.818333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7308001, "NOM_USUEL": "SARRAS COOPERATIVE RHODA", "LAT": 45.186667, "LON": 4.8, "ALTI": 133, "MIN_DATE": "1953-07-12", "MAX_DATE": "1953-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.8, 45.186667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7314001, "NOM_USUEL": "SILHAC FONTBONNE", "LAT": 44.88, "LON": 4.608333, "ALTI": 600, "MIN_DATE": "1952-01-01", "MAX_DATE": "1977-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.608333, 44.88 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7315001, "NOM_USUEL": "LA SOUCHE SAINT LOUIS", "LAT": 44.628333, "LON": 4.196667, "ALTI": 850, "MIN_DATE": "1957-08-01", "MAX_DATE": "1961-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.196667, 44.628333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7315002, "NOM_USUEL": "LA SOUCHE", "LAT": 44.628333, "LON": 4.196667, "ALTI": 600, "MIN_DATE": "1965-01-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.196667, 44.628333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7315003, "NOM_USUEL": "LA SOUCHE LE BOURG", "LAT": 44.628333, "LON": 4.196667, "ALTI": 600, "MIN_DATE": "1961-07-01", "MAX_DATE": "1964-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.196667, 44.628333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7315004, "NOM_USUEL": "LA SOUCHE", "LAT": 44.6285, "LON": 4.123667, "ALTI": 924, "MIN_DATE": "1997-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.123667, 44.6285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7322001, "NOM_USUEL": "THUEYTS", "LAT": 44.673333, "LON": 4.238333, "ALTI": 420, "MIN_DATE": "1994-06-01", "MAX_DATE": "2002-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.238333, 44.673333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7324002, "NOM_USUEL": "TOURNON-SUR-RHONE NORD - RMC", "LAT": 45.065, "LON": 4.835, "ALTI": 121, "MIN_DATE": "1966-01-01", "MAX_DATE": "1969-02-27" }, "geometry": { "type": "Point", "coordinates": [ 4.835, 45.065 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7324003, "NOM_USUEL": "TOURNON", "LAT": 45.05, "LON": 4.841667, "ALTI": 118, "MIN_DATE": "1989-01-07", "MAX_DATE": "2010-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.841667, 45.05 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7326001, "NOM_USUEL": "USCLADES-ET-RIEUTORD RIEUTORD", "LAT": 44.775, "LON": 4.156667, "ALTI": 1123, "MIN_DATE": "1952-01-01", "MAX_DATE": "1977-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.156667, 44.775 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7329002, "NOM_USUEL": "VALGORGE RMC", "LAT": 44.591667, "LON": 4.115, "ALTI": 620, "MIN_DATE": "1970-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.115, 44.591667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7330002, "NOM_USUEL": "VALLON", "LAT": 44.41, "LON": 4.386667, "ALTI": 94, "MIN_DATE": "1972-01-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.386667, 44.41 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7330004, "NOM_USUEL": "VALLON SA", "LAT": 44.391833, "LON": 4.403667, "ALTI": 120, "MIN_DATE": "1991-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.403667, 44.391833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7334001, "NOM_USUEL": "LES VANS", "LAT": 44.409167, "LON": 4.127333, "ALTI": 215, "MIN_DATE": "1959-07-01", "MAX_DATE": "2013-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.127333, 44.409167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7334003, "NOM_USUEL": "LES VANS SA", "LAT": 44.411667, "LON": 4.118, "ALTI": 275, "MIN_DATE": "1997-05-01", "MAX_DATE": "2010-09-09" }, "geometry": { "type": "Point", "coordinates": [ 4.118, 44.411667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7334004, "NOM_USUEL": "LES VANS-SA", "LAT": 44.4155, "LON": 4.150833, "ALTI": 140, "MIN_DATE": "2010-09-09", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.150833, 44.4155 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 7338005, "NOM_USUEL": "VERNOUX SA", "LAT": 44.893333, "LON": 4.626667, "ALTI": 510, "MIN_DATE": "1995-05-01", "MAX_DATE": "2020-09-15" }, "geometry": { "type": "Point", "coordinates": [ 4.626667, 44.893333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80001001, "NOM_USUEL": "ABBEVILLE", "LAT": 50.136, "LON": 1.834, "ALTI": 69, "MIN_DATE": "1922-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.834, 50.136 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80001002, "NOM_USUEL": "ABBEVILLE SUCRERIE", "LAT": 50.106667, "LON": 1.835, "ALTI": 25, "MIN_DATE": "1932-07-01", "MAX_DATE": "1969-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.835, 50.106667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80001005, "NOM_USUEL": "ABBEVILLE", "LAT": 50.106667, "LON": 1.835, "ALTI": 68, "MIN_DATE": "1921-01-01", "MAX_DATE": "1922-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.835, 50.106667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80003001, "NOM_USUEL": "ACHEUX-EN-AMIENOIS BOURG", "LAT": 50.07, "LON": 2.53, "ALTI": 154, "MIN_DATE": "1928-01-01", "MAX_DATE": "1932-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.53, 50.07 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80009001, "NOM_USUEL": "AILLY-LE-HAUT", "LAT": 50.075833, "LON": 1.9945, "ALTI": 107, "MIN_DATE": "1941-03-01", "MAX_DATE": "1944-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.9945, 50.075833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80010001, "NOM_USUEL": "AILLY-SUR-NOYE", "LAT": 49.757667, "LON": 2.370167, "ALTI": 97, "MIN_DATE": "1931-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.370167, 49.757667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80013001, "NOM_USUEL": "AIRAINES BOURG", "LAT": 49.963333, "LON": 1.943333, "ALTI": 28, "MIN_DATE": "1928-02-01", "MAX_DATE": "1931-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.943333, 49.963333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80021001, "NOM_USUEL": "AMIENS CITE ADM", "LAT": 49.883333, "LON": 2.316667, "ALTI": 41, "MIN_DATE": "1901-01-01", "MAX_DATE": "1995-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.316667, 49.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80021002, "NOM_USUEL": "AMIENS", "LAT": 49.893333, "LON": 2.293333, "ALTI": 50, "MIN_DATE": "1947-04-01", "MAX_DATE": "1959-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.293333, 49.893333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80021003, "NOM_USUEL": "AMIENS", "LAT": 49.886667, "LON": 2.316667, "ALTI": 48, "MIN_DATE": "1877-01-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.316667, 49.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80021004, "NOM_USUEL": "AMIENS", "LAT": 49.883333, "LON": 2.326667, "ALTI": 53, "MIN_DATE": "1871-12-01", "MAX_DATE": "1876-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.326667, 49.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80041001, "NOM_USUEL": "AUMONT", "LAT": 49.883667, "LON": 1.9295, "ALTI": 119, "MIN_DATE": "1947-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.9295, 49.883667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80061001, "NOM_USUEL": "BEAUCAMPS-LE-J", "LAT": 49.815, "LON": 1.773333, "ALTI": 206, "MIN_DATE": "1928-01-01", "MAX_DATE": "1936-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.773333, 49.815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80086001, "NOM_USUEL": "BERNAVILLE MAN", "LAT": 50.133333, "LON": 2.183333, "ALTI": 145, "MIN_DATE": "1928-01-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.183333, 50.133333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80089001, "NOM_USUEL": "BERNEUIL BOURG-2", "LAT": 50.095, "LON": 2.17, "ALTI": 138, "MIN_DATE": "1928-01-01", "MAX_DATE": "1947-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.17, 50.095 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80167001, "NOM_USUEL": "CANCHY", "LAT": 50.185, "LON": 1.878333, "ALTI": 74, "MIN_DATE": "1928-01-01", "MAX_DATE": "1940-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.878333, 50.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80197001, "NOM_USUEL": "CIZANCOURT FERME", "LAT": 49.845, "LON": 2.921667, "ALTI": 58, "MIN_DATE": "1944-12-01", "MAX_DATE": "1952-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.921667, 49.845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80204001, "NOM_USUEL": "COMBLES ROUTE DE MAUREPAS", "LAT": 50.006667, "LON": 2.86, "ALTI": 110, "MIN_DATE": "1928-02-01", "MAX_DATE": "1954-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.86, 50.006667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80212001, "NOM_USUEL": "CORBIE", "LAT": 49.908333, "LON": 2.51, "ALTI": 25, "MIN_DATE": "1928-01-01", "MAX_DATE": "1931-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.51, 49.908333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80213001, "NOM_USUEL": "COTTENCHY", "LAT": 49.8205, "LON": 2.391667, "ALTI": 46, "MIN_DATE": "1934-02-01", "MAX_DATE": "2013-03-21" }, "geometry": { "type": "Point", "coordinates": [ 2.391667, 49.8205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80222002, "NOM_USUEL": "CRECY-EN-PONTH", "LAT": 50.253333, "LON": 1.881667, "ALTI": 40, "MIN_DATE": "1928-01-01", "MAX_DATE": "1936-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.881667, 50.253333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80237001, "NOM_USUEL": "DEMUIN ECOLE DE GARCONS", "LAT": 49.818333, "LON": 2.535, "ALTI": 59, "MIN_DATE": "1947-02-01", "MAX_DATE": "1957-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.535, 49.818333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80253002, "NOM_USUEL": "DOULLENS", "LAT": 50.147667, "LON": 2.3485, "ALTI": 59, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.3485, 50.147667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80261002, "NOM_USUEL": "DURY BOURG", "LAT": 49.845, "LON": 2.27, "ALTI": 115, "MIN_DATE": "1928-01-01", "MAX_DATE": "1931-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.27, 49.845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80303001, "NOM_USUEL": "FAVIERES", "LAT": 50.2405, "LON": 1.678833, "ALTI": 5, "MIN_DATE": "1943-01-01", "MAX_DATE": "2001-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.678833, 50.2405 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80331001, "NOM_USUEL": "FOREST-L'ABBAYE", "LAT": 50.203333, "LON": 1.825, "ALTI": 50, "MIN_DATE": "1928-01-01", "MAX_DATE": "1967-02-28" }, "geometry": { "type": "Point", "coordinates": [ 1.825, 50.203333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80332001, "NOM_USUEL": "FOREST-MONTIERS", "LAT": 50.243333, "LON": 1.74, "ALTI": 15, "MIN_DATE": "1928-01-01", "MAX_DATE": "1958-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.74, 50.243333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80410002, "NOM_USUEL": "HAM-AGGLO", "LAT": 49.74, "LON": 3.038333, "ALTI": 62, "MIN_DATE": "1928-01-01", "MAX_DATE": "1930-05-31" }, "geometry": { "type": "Point", "coordinates": [ 3.038333, 49.74 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80421001, "NOM_USUEL": "HATTENCOURT", "LAT": 49.768333, "LON": 2.791667, "ALTI": 86, "MIN_DATE": "1933-11-01", "MAX_DATE": "1974-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.791667, 49.768333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80430001, "NOM_USUEL": "HERBECOURT", "LAT": 49.923333, "LON": 2.8395, "ALTI": 90, "MIN_DATE": "1946-03-01", "MAX_DATE": "2007-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.8395, 49.923333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80443001, "NOM_USUEL": "HORNOY BG", "LAT": 49.846667, "LON": 1.903333, "ALTI": 166, "MIN_DATE": "1928-01-01", "MAX_DATE": "1952-10-31" }, "geometry": { "type": "Point", "coordinates": [ 1.903333, 49.846667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80462001, "NOM_USUEL": "LAMOTTE-BULEUX BOURG", "LAT": 50.186667, "LON": 1.831667, "ALTI": 58, "MIN_DATE": "1946-11-01", "MAX_DATE": "1947-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.831667, 50.186667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80486001, "NOM_USUEL": "LONG BOURG", "LAT": 50.038333, "LON": 1.981667, "ALTI": 110, "MIN_DATE": "1928-10-01", "MAX_DATE": "1929-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.981667, 50.038333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80500001, "NOM_USUEL": "MAISNIERES", "LAT": 50.015333, "LON": 1.6175, "ALTI": 60, "MIN_DATE": "1943-10-01", "MAX_DATE": "1943-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.6175, 50.015333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80555001, "NOM_USUEL": "MONCHY-LAGACHE", "LAT": 49.851667, "LON": 3.045, "ALTI": 75, "MIN_DATE": "1934-03-01", "MAX_DATE": "1961-10-31" }, "geometry": { "type": "Point", "coordinates": [ 3.045, 49.851667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80570001, "NOM_USUEL": "MOREUIL", "LAT": 49.773333, "LON": 2.483333, "ALTI": 40, "MIN_DATE": "1937-01-01", "MAX_DATE": "1937-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.483333, 49.773333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80571001, "NOM_USUEL": "MORISEL", "LAT": 49.768333, "LON": 2.471667, "ALTI": 56, "MIN_DATE": "1928-10-01", "MAX_DATE": "1932-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.471667, 49.768333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80585001, "NOM_USUEL": "NESLE", "LAT": 49.758333, "LON": 2.91, "ALTI": 77, "MIN_DATE": "1928-01-01", "MAX_DATE": "1929-01-31" }, "geometry": { "type": "Point", "coordinates": [ 2.91, 49.758333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80606001, "NOM_USUEL": "OISEMONT - MAN", "LAT": 49.955, "LON": 1.768333, "ALTI": 118, "MIN_DATE": "1928-01-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.768333, 49.955 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80620001, "NOM_USUEL": "PERONNE", "LAT": 49.933333, "LON": 2.933333, "ALTI": 52, "MIN_DATE": "1928-03-01", "MAX_DATE": "1937-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.933333, 49.933333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80623001, "NOM_USUEL": "PIENNES-ONVILLERS BOURG", "LAT": 49.628333, "LON": 2.641667, "ALTI": 104, "MIN_DATE": "1928-04-01", "MAX_DATE": "1934-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.641667, 49.628333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80630002, "NOM_USUEL": "POIX-DE-PICARDIE-ECOLE", "LAT": 49.775, "LON": 1.986667, "ALTI": 110, "MIN_DATE": "1938-01-01", "MAX_DATE": "1953-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.986667, 49.775 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80630005, "NOM_USUEL": "POIX-DE-PICARDIE-BOURG1", "LAT": 49.775, "LON": 1.986667, "ALTI": 110, "MIN_DATE": "1928-01-01", "MAX_DATE": "1939-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.986667, 49.775 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80643001, "NOM_USUEL": "PROUZEL BOURG", "LAT": 49.816667, "LON": 2.2, "ALTI": 100, "MIN_DATE": "1949-04-01", "MAX_DATE": "1949-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.2, 49.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80677001, "NOM_USUEL": "ROISEL PONTS-ET-CHAUSSEES", "LAT": 49.946667, "LON": 3.098333, "ALTI": 75, "MIN_DATE": "1928-01-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 3.098333, 49.946667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80680001, "NOM_USUEL": "ROSIERES-EN-SA", "LAT": 49.815, "LON": 2.701667, "ALTI": 90, "MIN_DATE": "1928-01-01", "MAX_DATE": "1940-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.701667, 49.815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80685001, "NOM_USUEL": "ROYE MAN", "LAT": 49.691667, "LON": 2.783333, "ALTI": 88, "MIN_DATE": "1928-01-01", "MAX_DATE": "1988-02-29" }, "geometry": { "type": "Point", "coordinates": [ 2.783333, 49.691667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80688001, "NOM_USUEL": "RUE", "LAT": 50.269833, "LON": 1.663667, "ALTI": 6, "MIN_DATE": "1932-07-01", "MAX_DATE": "2014-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.663667, 50.269833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80716001, "NOM_USUEL": "SAINT-RIQUIER BOURG", "LAT": 50.133333, "LON": 1.948333, "ALTI": 35, "MIN_DATE": "1872-02-01", "MAX_DATE": "1934-10-31" }, "geometry": { "type": "Point", "coordinates": [ 1.948333, 50.133333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80721001, "NOM_USUEL": "SAINT-VALERY-SUR-SOMME", "LAT": 50.183333, "LON": 1.638333, "ALTI": 8, "MIN_DATE": "1928-11-01", "MAX_DATE": "1953-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.638333, 50.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80746001, "NOM_USUEL": "TALMAS", "LAT": 50.028333, "LON": 2.322, "ALTI": 130, "MIN_DATE": "1928-08-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.322, 50.028333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80749001, "NOM_USUEL": "TERRAMESNIL", "LAT": 50.106167, "LON": 2.378667, "ALTI": 137, "MIN_DATE": "1932-06-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.378667, 50.106167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80801001, "NOM_USUEL": "VILLERS-CARBONNEL", "LAT": 49.877167, "LON": 2.897667, "ALTI": 81, "MIN_DATE": "1943-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.897667, 49.877167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80802001, "NOM_USUEL": "VILLERS-FAUCON", "LAT": 49.9815, "LON": 3.120333, "ALTI": 120, "MIN_DATE": "1932-08-01", "MAX_DATE": "1987-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.120333, 49.9815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80809001, "NOM_USUEL": "VISMES", "LAT": 50.01, "LON": 1.675, "ALTI": 79, "MIN_DATE": "1928-02-01", "MAX_DATE": "1929-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.675, 50.01 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80815001, "NOM_USUEL": "VRON - MAN", "LAT": 50.308333, "LON": 1.751667, "ALTI": 40, "MIN_DATE": "1948-04-01", "MAX_DATE": "2002-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.751667, 50.308333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80820001, "NOM_USUEL": "WARLOY-BAILLON", "LAT": 50.008333, "LON": 2.521667, "ALTI": 68, "MIN_DATE": "1948-12-01", "MAX_DATE": "1982-08-31" }, "geometry": { "type": "Point", "coordinates": [ 2.521667, 50.008333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80001003, "NOM_USUEL": "ABBEVILLE COTE DE LA JUSTICE", "LAT": 50.103333, "LON": 1.835, "ALTI": 57, "MIN_DATE": "1963-06-01", "MAX_DATE": "1965-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.835, 50.103333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80016001, "NOM_USUEL": "ALBERT", "LAT": 49.9945, "LON": 2.648833, "ALTI": 54, "MIN_DATE": "1951-10-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.648833, 49.9945 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80039001, "NOM_USUEL": "AULT", "LAT": 50.1, "LON": 1.446667, "ALTI": 80, "MIN_DATE": "1952-06-01", "MAX_DATE": "1959-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.446667, 50.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80039002, "NOM_USUEL": "AULT ECOLE DE GARCONS", "LAT": 50.1, "LON": 1.446667, "ALTI": 80, "MIN_DATE": "1960-01-01", "MAX_DATE": "1960-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.446667, 50.1 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80062001, "NOM_USUEL": "BEAUCAMPS-LE-V", "LAT": 49.843333, "LON": 1.78, "ALTI": 183, "MIN_DATE": "1971-01-01", "MAX_DATE": "1971-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.78, 49.843333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80086002, "NOM_USUEL": "BERNAVILLE", "LAT": 50.139333, "LON": 2.1805, "ALTI": 146, "MIN_DATE": "1988-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.1805, 50.139333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80136001, "NOM_USUEL": "BRAY-SUR-SOMME", "LAT": 49.943833, "LON": 2.718833, "ALTI": 47, "MIN_DATE": "1951-11-01", "MAX_DATE": "2010-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.718833, 49.943833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80148001, "NOM_USUEL": "BUIGNY-LES-GAMACHES", "LAT": 50.0245, "LON": 1.568333, "ALTI": 114, "MIN_DATE": "1971-01-01", "MAX_DATE": "2018-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.568333, 50.0245 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80182001, "NOM_USUEL": "CAYEUX-SUR-MER", "LAT": 50.183333, "LON": 1.516667, "ALTI": 8, "MIN_DATE": "1969-01-01", "MAX_DATE": "1999-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.516667, 50.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80182002, "NOM_USUEL": "CAYEUX-HOURDEL", "LAT": 50.2155, "LON": 1.566167, "ALTI": 4, "MIN_DATE": "1988-01-01", "MAX_DATE": "2006-01-11" }, "geometry": { "type": "Point", "coordinates": [ 1.566167, 50.2155 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80182003, "NOM_USUEL": "CAYEUX-SUR-MER", "LAT": 50.187167, "LON": 1.521167, "ALTI": 4, "MIN_DATE": "2006-01-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.521167, 50.187167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80186001, "NOM_USUEL": "CHAULNES", "LAT": 49.816667, "LON": 2.8, "ALTI": 103, "MIN_DATE": "1974-10-01", "MAX_DATE": "1986-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.8, 49.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80211002, "NOM_USUEL": "CONTY", "LAT": 49.7335, "LON": 2.1505, "ALTI": 92, "MIN_DATE": "1985-09-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.1505, 49.7335 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80222001, "NOM_USUEL": "CRECY-EN-PONTH", "LAT": 50.253333, "LON": 1.881667, "ALTI": 32, "MIN_DATE": "1973-04-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.881667, 50.253333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80229001, "NOM_USUEL": "CROUY-ST-PIERRE", "LAT": 49.962, "LON": 2.108833, "ALTI": 17, "MIN_DATE": "1971-01-01", "MAX_DATE": "2001-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.108833, 49.962 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80241002, "NOM_USUEL": "DOMART-EN-PONTHIEU", "LAT": 50.068667, "LON": 2.131167, "ALTI": 44, "MIN_DATE": "2003-03-01", "MAX_DATE": "2010-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.131167, 50.068667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80248001, "NOM_USUEL": "DOMPIERRE-SUR-AUTHIE", "LAT": 50.301, "LON": 1.9205, "ALTI": 36, "MIN_DATE": "1970-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.9205, 50.301 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80249001, "NOM_USUEL": "DOMQUEUR", "LAT": 50.113333, "LON": 2.047167, "ALTI": 87, "MIN_DATE": "1971-02-01", "MAX_DATE": "2015-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.047167, 50.113333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80261001, "NOM_USUEL": "DURY-LES-AMIENS", "LAT": 49.873667, "LON": 2.272167, "ALTI": 74, "MIN_DATE": "1968-09-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.272167, 49.873667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80271002, "NOM_USUEL": "EPEHY_SAPC", "LAT": 50.001167, "LON": 3.1215, "ALTI": 117, "MIN_DATE": "1988-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.1215, 50.001167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80274001, "NOM_USUEL": "EPPEVILLE-HAM", "LAT": 49.742333, "LON": 3.057667, "ALTI": 66, "MIN_DATE": "1984-06-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.057667, 49.742333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80290001, "NOM_USUEL": "ESTREES-CRECY", "LAT": 50.258667, "LON": 1.9255, "ALTI": 76, "MIN_DATE": "1976-02-01", "MAX_DATE": "2002-10-31" }, "geometry": { "type": "Point", "coordinates": [ 1.9255, 50.258667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80308001, "NOM_USUEL": "FEUQUIERES-EN-VIMEU", "LAT": 50.061167, "LON": 1.604333, "ALTI": 100, "MIN_DATE": "1975-05-01", "MAX_DATE": "2013-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.604333, 50.061167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80318001, "NOM_USUEL": "FLIXECOURT", "LAT": 50.011667, "LON": 2.086667, "ALTI": 20, "MIN_DATE": "1971-01-01", "MAX_DATE": "1971-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.086667, 50.011667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80333001, "NOM_USUEL": "FORT-MAHON", "LAT": 50.333333, "LON": 1.55, "ALTI": 4, "MIN_DATE": "1965-11-01", "MAX_DATE": "1991-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.55, 50.333333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80379002, "NOM_USUEL": "AMIENS-GLISY", "LAT": 49.872, "LON": 2.3825, "ALTI": 60, "MIN_DATE": "1987-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.3825, 49.872 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80390001, "NOM_USUEL": "GRIVESNES", "LAT": 49.687833, "LON": 2.473167, "ALTI": 110, "MIN_DATE": "1971-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.473167, 49.687833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80396001, "NOM_USUEL": "GUESCHART", "LAT": 50.234, "LON": 2.011167, "ALTI": 101, "MIN_DATE": "2002-12-01", "MAX_DATE": "2020-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.011167, 50.234 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80406001, "NOM_USUEL": "HALLENCOURT", "LAT": 49.994, "LON": 1.879, "ALTI": 110, "MIN_DATE": "1971-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.879, 49.994 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80410001, "NOM_USUEL": "HAM", "LAT": 49.756167, "LON": 3.064667, "ALTI": 67, "MIN_DATE": "1961-11-01", "MAX_DATE": "1984-05-31" }, "geometry": { "type": "Point", "coordinates": [ 3.064667, 49.756167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80417001, "NOM_USUEL": "HARBONNIERES", "LAT": 49.851833, "LON": 2.665167, "ALTI": 89, "MIN_DATE": "1960-07-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.665167, 49.851833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80431001, "NOM_USUEL": "HERISSART", "LAT": 50.032833, "LON": 2.408667, "ALTI": 140, "MIN_DATE": "2006-09-01", "MAX_DATE": "2013-03-21" }, "geometry": { "type": "Point", "coordinates": [ 2.408667, 50.032833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80443002, "NOM_USUEL": "HORNOY-LE-BOURG", "LAT": 49.826667, "LON": 1.863333, "ALTI": 178, "MIN_DATE": "1970-11-01", "MAX_DATE": "2000-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.863333, 49.826667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80455001, "NOM_USUEL": "LA-CHAPELLE-SOUS-POIX", "LAT": 49.765, "LON": 1.958333, "ALTI": 125, "MIN_DATE": "1953-09-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.958333, 49.765 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80481001, "NOM_USUEL": "LIHONS", "LAT": 49.835833, "LON": 2.769167, "ALTI": 96, "MIN_DATE": "1986-10-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.769167, 49.835833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80523001, "NOM_USUEL": "MEAULTE", "LAT": 49.971833, "LON": 2.703833, "ALTI": 107, "MIN_DATE": "1987-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.703833, 49.971833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80554001, "NOM_USUEL": "MOLLIENS-DREUIL", "LAT": 49.8875, "LON": 2.017333, "ALTI": 61, "MIN_DATE": "1998-01-01", "MAX_DATE": "2020-12-14" }, "geometry": { "type": "Point", "coordinates": [ 2.017333, 49.8875 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80557001, "NOM_USUEL": "ESTREES-MONS-INRA", "LAT": 49.874833, "LON": 3.031167, "ALTI": 87, "MIN_DATE": "1989-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.031167, 49.874833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80573001, "NOM_USUEL": "MORVILLERS-ST", "LAT": 49.776, "LON": 1.819, "ALTI": 208, "MIN_DATE": "1983-01-01", "MAX_DATE": "2008-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.819, 49.776 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80598001, "NOM_USUEL": "NOUVION-EN-PONTHIEU", "LAT": 50.2075, "LON": 1.785667, "ALTI": 23, "MIN_DATE": "1967-03-01", "MAX_DATE": "2017-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.785667, 50.2075 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80600001, "NOM_USUEL": "NOYELLES-SUR-MER", "LAT": 50.178667, "LON": 1.705333, "ALTI": 9, "MIN_DATE": "1965-10-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.705333, 50.178667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80606002, "NOM_USUEL": "OISEMONT_SAPC", "LAT": 49.956833, "LON": 1.77, "ALTI": 121, "MIN_DATE": "1987-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.77, 49.956833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80611001, "NOM_USUEL": "ORESMAUX", "LAT": 49.766667, "LON": 2.3, "ALTI": 135, "MIN_DATE": "1961-01-01", "MAX_DATE": "1994-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.3, 49.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80618001, "NOM_USUEL": "PENDE", "LAT": 50.158333, "LON": 1.585, "ALTI": 10, "MIN_DATE": "1971-01-01", "MAX_DATE": "1971-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.585, 50.158333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80628001, "NOM_USUEL": "LE-PLESSIER-ROZAINVILLERS", "LAT": 49.754333, "LON": 2.5545, "ALTI": 105, "MIN_DATE": "1952-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.5545, 49.754333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80630001, "NOM_USUEL": "POIX-DE-PICARDIE", "LAT": 49.778333, "LON": 1.980167, "ALTI": 107, "MIN_DATE": "1977-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.980167, 49.778333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80682001, "NOM_USUEL": "ROUVROY-EN-SANTERRE", "LAT": 49.765167, "LON": 2.698333, "ALTI": 95, "MIN_DATE": "1993-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.698333, 49.765167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80685002, "NOM_USUEL": "ROYE", "LAT": 49.691667, "LON": 2.783333, "ALTI": 90, "MIN_DATE": "1988-03-01", "MAX_DATE": "1992-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.783333, 49.691667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80704001, "NOM_USUEL": "SAINT-GRATIEN", "LAT": 49.963833, "LON": 2.408667, "ALTI": 110, "MIN_DATE": "1981-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.408667, 49.963833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80713001, "NOM_USUEL": "SAINT-QUENTIN EN TT", "LAT": 50.285667, "LON": 1.582333, "ALTI": 5, "MIN_DATE": "1953-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.582333, 50.285667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80714001, "NOM_USUEL": "SAINT-QUENTIN", "LAT": 50.07, "LON": 1.455, "ALTI": 104, "MIN_DATE": "1971-01-01", "MAX_DATE": "1971-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.455, 50.07 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80767001, "NOM_USUEL": "LE TRANSLAY", "LAT": 49.969167, "LON": 1.675833, "ALTI": 130, "MIN_DATE": "1970-11-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.675833, 49.969167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80775001, "NOM_USUEL": "VALINES", "LAT": 50.076667, "LON": 1.625, "ALTI": 92, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-02-28" }, "geometry": { "type": "Point", "coordinates": [ 1.625, 50.076667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80780001, "NOM_USUEL": "VAUDRICOURT", "LAT": 50.114167, "LON": 1.547167, "ALTI": 58, "MIN_DATE": "1992-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.547167, 50.114167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80781001, "NOM_USUEL": "VAUVILLERS", "LAT": 49.834167, "LON": 2.711, "ALTI": 85, "MIN_DATE": "2006-09-01", "MAX_DATE": "2013-03-21" }, "geometry": { "type": "Point", "coordinates": [ 2.711, 49.834167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80815002, "NOM_USUEL": "VRON", "LAT": 50.3105, "LON": 1.7625, "ALTI": 41, "MIN_DATE": "1988-08-01", "MAX_DATE": "2013-03-21" }, "geometry": { "type": "Point", "coordinates": [ 1.7625, 50.3105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 80819001, "NOM_USUEL": "WARGNIES", "LAT": 50.033333, "LON": 2.251667, "ALTI": 92, "MIN_DATE": "1991-01-01", "MAX_DATE": "1996-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.251667, 50.033333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25015001, "NOM_USUEL": "AMANCEY", "LAT": 47.038333, "LON": 6.076667, "ALTI": 600, "MIN_DATE": "1881-01-01", "MAX_DATE": "2007-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.076667, 47.038333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25021001, "NOM_USUEL": "ARC-ET-SENANS", "LAT": 47.0315, "LON": 5.782, "ALTI": 235, "MIN_DATE": "1932-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.782, 47.0315 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25047001, "NOM_USUEL": "BAUME-LES-DAMES", "LAT": 47.347167, "LON": 6.350333, "ALTI": 267, "MIN_DATE": "1943-03-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.350333, 47.347167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25056001, "NOM_USUEL": "BESANCON", "LAT": 47.249, "LON": 5.988833, "ALTI": 307, "MIN_DATE": "1884-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.988833, 47.249 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25056003, "NOM_USUEL": "BESANCON - TARRAGNOZ", "LAT": 47.2265, "LON": 6.031333, "ALTI": 253, "MIN_DATE": "1897-01-01", "MAX_DATE": "1900-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.031333, 47.2265 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25056004, "NOM_USUEL": "FORT DE PLANOISE", "LAT": 47.209167, "LON": 5.982833, "ALTI": 455, "MIN_DATE": "1897-01-01", "MAX_DATE": "1900-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.982833, 47.209167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25056005, "NOM_USUEL": "TILLEROYES SANA", "LAT": 47.235167, "LON": 5.963167, "ALTI": 360, "MIN_DATE": "1942-12-01", "MAX_DATE": "1954-11-30" }, "geometry": { "type": "Point", "coordinates": [ 5.963167, 47.235167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25056006, "NOM_USUEL": "BESANCON - CHAPRAIS", "LAT": 47.245, "LON": 6.025, "ALTI": 251, "MIN_DATE": "1928-01-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.025, 47.245 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25056007, "NOM_USUEL": "BESANCON - EN", "LAT": 47.243167, "LON": 6.018833, "ALTI": 253, "MIN_DATE": "1877-01-01", "MAX_DATE": "1900-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.018833, 47.243167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25056012, "NOM_USUEL": "BESANCON - JANNOT", "LAT": 47.245, "LON": 6.025, "ALTI": 363, "MIN_DATE": "1854-01-01", "MAX_DATE": "1857-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.025, 47.245 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25062001, "NOM_USUEL": "LE BIZOT - MF", "LAT": 47.135, "LON": 6.671667, "ALTI": 931, "MIN_DATE": "1943-12-01", "MAX_DATE": "1963-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.671667, 47.135 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25078001, "NOM_USUEL": "BOUCLANS - AGGL", "LAT": 47.248333, "LON": 6.235, "ALTI": 449, "MIN_DATE": "1881-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.235, 47.248333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25098001, "NOM_USUEL": "BUFFARD BG", "LAT": 47.038333, "LON": 5.823333, "ALTI": 225, "MIN_DATE": "1947-07-08", "MAX_DATE": "1953-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.823333, 47.038333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25127001, "NOM_USUEL": "CHARQUEMONT", "LAT": 47.218833, "LON": 6.815, "ALTI": 884, "MIN_DATE": "1944-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.815, 47.218833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25127002, "NOM_USUEL": "CHARQUEMONT - EDF", "LAT": 47.186833, "LON": 6.873333, "ALTI": 549, "MIN_DATE": "1948-11-01", "MAX_DATE": "1980-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.873333, 47.186833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25155001, "NOM_USUEL": "CLERON BG", "LAT": 47.086667, "LON": 6.06, "ALTI": 315, "MIN_DATE": "1943-10-01", "MAX_DATE": "1964-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.06, 47.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25156001, "NOM_USUEL": "CLERVAL - AGGL", "LAT": 47.393333, "LON": 6.498333, "ALTI": 281, "MIN_DATE": "1873-03-01", "MAX_DATE": "1874-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.498333, 47.393333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25160001, "NOM_USUEL": "LES COMBES - BOURG", "LAT": 47.061667, "LON": 6.541667, "ALTI": 913, "MIN_DATE": "1946-03-01", "MAX_DATE": "1947-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.541667, 47.061667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25192001, "NOM_USUEL": "DAMPJOUX - USINE EDF", "LAT": 47.341667, "LON": 6.756667, "ALTI": 361, "MIN_DATE": "1944-05-01", "MAX_DATE": "1969-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.756667, 47.341667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25223001, "NOM_USUEL": "ETERNOZ EC.", "LAT": 47.006667, "LON": 6.028333, "ALTI": 525, "MIN_DATE": "1934-07-01", "MAX_DATE": "1936-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.028333, 47.006667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25255001, "NOM_USUEL": "FOURNET-BLANCHEROCHE BG", "LAT": 47.168333, "LON": 6.823333, "ALTI": 959, "MIN_DATE": "1944-01-01", "MAX_DATE": "1950-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.823333, 47.168333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25301001, "NOM_USUEL": "GUYANS - ERAUGES", "LAT": 47.156667, "LON": 6.571667, "ALTI": 810, "MIN_DATE": "1949-05-01", "MAX_DATE": "1969-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.571667, 47.156667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25301002, "NOM_USUEL": "GUYANS - BG", "LAT": 47.156667, "LON": 6.571667, "ALTI": 730, "MIN_DATE": "1942-09-01", "MAX_DATE": "1950-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.571667, 47.156667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25301003, "NOM_USUEL": "GUYANS - EC", "LAT": 47.156667, "LON": 6.571667, "ALTI": 792, "MIN_DATE": "1933-01-01", "MAX_DATE": "1942-08-31" }, "geometry": { "type": "Point", "coordinates": [ 6.571667, 47.156667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25315001, "NOM_USUEL": "L'ISLE-ECOLE", "LAT": 47.451667, "LON": 6.583333, "ALTI": 292, "MIN_DATE": "1944-03-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.583333, 47.451667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25318001, "NOM_USUEL": "JOUGNE", "LAT": 46.760333, "LON": 6.388833, "ALTI": 988, "MIN_DATE": "1943-12-01", "MAX_DATE": "2010-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.388833, 46.760333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25320001, "NOM_USUEL": "LABERGEMENT", "LAT": 46.779667, "LON": 6.2795, "ALTI": 863, "MIN_DATE": "1943-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.2795, 46.779667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25334001, "NOM_USUEL": "LEVIER_SAPC", "LAT": 46.949333, "LON": 6.124167, "ALTI": 713, "MIN_DATE": "1881-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.124167, 46.949333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25335001, "NOM_USUEL": "LIEBVILLERS", "LAT": 47.323333, "LON": 6.796667, "ALTI": 365, "MIN_DATE": "1931-04-01", "MAX_DATE": "1994-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.796667, 47.323333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25336001, "NOM_USUEL": "LIESLE - EC", "LAT": 47.061667, "LON": 5.815, "ALTI": 254, "MIN_DATE": "1942-04-01", "MAX_DATE": "1960-10-31" }, "geometry": { "type": "Point", "coordinates": [ 5.815, 47.061667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25348001, "NOM_USUEL": "LONGEVILLES", "LAT": 46.755, "LON": 6.32, "ALTI": 912, "MIN_DATE": "1928-01-01", "MAX_DATE": "1947-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.32, 46.755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25356001, "NOM_USUEL": "MAICHE - ROND BUISSON", "LAT": 47.251667, "LON": 6.813333, "ALTI": 855, "MIN_DATE": "1944-04-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.813333, 47.251667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25364001, "NOM_USUEL": "MAMIROLLE", "LAT": 47.233333, "LON": 6.116667, "ALTI": 515, "MIN_DATE": "1897-01-01", "MAX_DATE": "1897-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.116667, 47.233333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25376001, "NOM_USUEL": "MEREY-VIEILLEY", "LAT": 47.331667, "LON": 6.06, "ALTI": 614, "MIN_DATE": "1897-01-01", "MAX_DATE": "1934-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.06, 47.331667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25388001, "NOM_USUEL": "MONTBELIARD - ECLUSE", "LAT": 47.511667, "LON": 6.8, "ALTI": 316, "MIN_DATE": "1854-01-01", "MAX_DATE": "1977-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.8, 47.511667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25395001, "NOM_USUEL": "MONTFAUCON FORT DE MONTFAUCON", "LAT": 47.235, "LON": 6.08, "ALTI": 610, "MIN_DATE": "1897-01-01", "MAX_DATE": "1937-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.08, 47.235 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25411004, "NOM_USUEL": "MORTEAU", "LAT": 47.056667, "LON": 6.6, "ALTI": 790, "MIN_DATE": "1944-01-01", "MAX_DATE": "2000-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.6, 47.056667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25413001, "NOM_USUEL": "MOUTHE", "LAT": 46.707, "LON": 6.2095, "ALTI": 940, "MIN_DATE": "1880-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.2095, 46.707 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25420001, "NOM_USUEL": "NANS-SOUS-STE-ANNE - AGGL", "LAT": 46.976667, "LON": 6.0, "ALTI": 370, "MIN_DATE": "1881-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.0, 46.976667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25434001, "NOM_USUEL": "ORNANS", "LAT": 47.106667, "LON": 6.148333, "ALTI": 341, "MIN_DATE": "1877-01-01", "MAX_DATE": "1984-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.148333, 47.106667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25435001, "NOM_USUEL": "ORSANS", "LAT": 47.246667, "LON": 6.386667, "ALTI": 525, "MIN_DATE": "1934-03-01", "MAX_DATE": "1944-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.386667, 47.246667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25440001, "NOM_USUEL": "OUHANS", "LAT": 46.998333, "LON": 6.298333, "ALTI": 600, "MIN_DATE": "1944-11-01", "MAX_DATE": "1986-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.298333, 46.998333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25453001, "NOM_USUEL": "PIERREFONTAINE", "LAT": 47.216667, "LON": 6.528833, "ALTI": 695, "MIN_DATE": "1947-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.528833, 47.216667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25462001, "NOM_USUEL": "PONTARLIER", "LAT": 46.904833, "LON": 6.339667, "ALTI": 831, "MIN_DATE": "1877-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.339667, 46.904833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25462002, "NOM_USUEL": "PONTARLIER - ECOLE", "LAT": 46.905, "LON": 6.355, "ALTI": 838, "MIN_DATE": "1928-01-01", "MAX_DATE": "1937-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.355, 46.905 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25462005, "NOM_USUEL": "PONTARLIER - JOUX", "LAT": 46.905, "LON": 6.353333, "ALTI": 972, "MIN_DATE": "1854-01-01", "MAX_DATE": "1857-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.353333, 46.905 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25463001, "NOM_USUEL": "PONT DE ROIDE", "LAT": 47.385, "LON": 6.77, "ALTI": 358, "MIN_DATE": "1877-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.77, 47.385 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25475001, "NOM_USUEL": "QUINGEY", "LAT": 47.103333, "LON": 5.88, "ALTI": 267, "MIN_DATE": "1881-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.88, 47.103333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25505001, "NOM_USUEL": "ROUGEMONT", "LAT": 47.478333, "LON": 6.356667, "ALTI": 256, "MIN_DATE": "1881-01-01", "MAX_DATE": "1950-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.356667, 47.478333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25519001, "NOM_USUEL": "ST HIPPOLYTE", "LAT": 47.316667, "LON": 6.813333, "ALTI": 387, "MIN_DATE": "1881-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.813333, 47.316667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25527001, "NOM_USUEL": "ST VIT", "LAT": 47.183333, "LON": 5.813333, "ALTI": 260, "MIN_DATE": "1944-11-01", "MAX_DATE": "1984-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.813333, 47.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25529001, "NOM_USUEL": "SANCEY LE GRAND", "LAT": 47.2975, "LON": 6.579167, "ALTI": 507, "MIN_DATE": "1928-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.579167, 47.2975 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25537001, "NOM_USUEL": "SCEY", "LAT": 47.098333, "LON": 6.075, "ALTI": 334, "MIN_DATE": "1945-06-01", "MAX_DATE": "1978-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.075, 47.098333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25547001, "NOM_USUEL": "SOCHAUX", "LAT": 47.506667, "LON": 6.815, "ALTI": 318, "MIN_DATE": "1946-12-01", "MAX_DATE": "1988-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.815, 47.506667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25553001, "NOM_USUEL": "SOYE", "LAT": 47.445, "LON": 6.498333, "ALTI": 310, "MIN_DATE": "1947-12-01", "MAX_DATE": "1954-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.498333, 47.445 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25565001, "NOM_USUEL": "TOUILLON", "LAT": 46.791667, "LON": 6.35, "ALTI": 1009, "MIN_DATE": "1938-07-01", "MAX_DATE": "1940-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.35, 46.791667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25601001, "NOM_USUEL": "VERCEL - BG", "LAT": 47.183333, "LON": 6.398333, "ALTI": 665, "MIN_DATE": "1897-01-01", "MAX_DATE": "1949-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.398333, 47.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25609001, "NOM_USUEL": "VERRIERES", "LAT": 46.896667, "LON": 6.448333, "ALTI": 918, "MIN_DATE": "1928-01-01", "MAX_DATE": "1930-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.448333, 46.896667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25621001, "NOM_USUEL": "VILLENEUVE-D'AMONT", "LAT": 46.939333, "LON": 6.039333, "ALTI": 692, "MIN_DATE": "1944-01-01", "MAX_DATE": "2024-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.039333, 46.939333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25004001, "NOM_USUEL": "ABBEVILLERS", "LAT": 47.423333, "LON": 6.94, "ALTI": 590, "MIN_DATE": "1964-07-01", "MAX_DATE": "2002-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.94, 47.423333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25007001, "NOM_USUEL": "ADAM-LES-VERCEL", "LAT": 47.169667, "LON": 6.394667, "ALTI": 665, "MIN_DATE": "1997-06-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.394667, 47.169667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25056002, "NOM_USUEL": "BESANCON - PALENTE", "LAT": 47.265833, "LON": 6.051167, "ALTI": 347, "MIN_DATE": "1960-02-01", "MAX_DATE": "1971-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.051167, 47.265833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25075001, "NOM_USUEL": "BONNEVAUX", "LAT": 46.811667, "LON": 6.185, "ALTI": 840, "MIN_DATE": "1983-01-01", "MAX_DATE": "2002-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.185, 46.811667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25087002, "NOM_USUEL": "BRANNE_SAPC", "LAT": 47.378, "LON": 6.472167, "ALTI": 287, "MIN_DATE": "2008-01-16", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.472167, 47.378 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25121001, "NOM_USUEL": "CHAPELLE", "LAT": 46.6, "LON": 6.115, "ALTI": 1088, "MIN_DATE": "1976-05-01", "MAX_DATE": "1984-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.115, 46.6 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25133001, "NOM_USUEL": "CHATILLON-LE-DU", "LAT": 47.3065, "LON": 6.001333, "ALTI": 341, "MIN_DATE": "1972-08-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.001333, 47.3065 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25133002, "NOM_USUEL": "CHATILLON LE DUC", "LAT": 47.306667, "LON": 6.006667, "ALTI": 450, "MIN_DATE": "1951-07-01", "MAX_DATE": "1972-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.006667, 47.306667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25142001, "NOM_USUEL": "CHAUX-NEUVE LE-LAITELET", "LAT": 46.648333, "LON": 6.16, "ALTI": 1205, "MIN_DATE": "1987-01-01", "MAX_DATE": "1990-07-31" }, "geometry": { "type": "Point", "coordinates": [ 6.16, 46.648333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25187001, "NOM_USUEL": "DAMBELIN", "LAT": 47.371833, "LON": 6.677333, "ALTI": 420, "MIN_DATE": "1992-10-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.677333, 47.371833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25195001, "NOM_USUEL": "DANNEMARIE-SUR-", "LAT": 47.201333, "LON": 5.872833, "ALTI": 267, "MIN_DATE": "1985-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.872833, 47.201333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25204001, "NOM_USUEL": "DOUBS STN EPURATION", "LAT": 46.926667, "LON": 6.35, "ALTI": 806, "MIN_DATE": "1979-12-01", "MAX_DATE": "1981-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.35, 46.926667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25209001, "NOM_USUEL": "ECHAY", "LAT": 47.046667, "LON": 5.948333, "ALTI": 351, "MIN_DATE": "1992-06-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.948333, 47.046667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25219001, "NOM_USUEL": "EPENOY", "LAT": 47.128333, "LON": 6.37, "ALTI": 742, "MIN_DATE": "1951-07-14", "MAX_DATE": "1989-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.37, 47.128333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25219002, "NOM_USUEL": "EPENOY", "LAT": 47.127167, "LON": 6.366333, "ALTI": 752, "MIN_DATE": "1992-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.366333, 47.127167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25222001, "NOM_USUEL": "ETALANS_SAPC", "LAT": 47.1525, "LON": 6.210167, "ALTI": 540, "MIN_DATE": "2020-02-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.210167, 47.1525 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25223002, "NOM_USUEL": "COULANS", "LAT": 47.023333, "LON": 6.0205, "ALTI": 468, "MIN_DATE": "2006-12-12", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.0205, 47.023333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25254001, "NOM_USUEL": "LES FOURGS", "LAT": 46.834, "LON": 6.4365, "ALTI": 1140, "MIN_DATE": "1958-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.4365, 46.834 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25254002, "NOM_USUEL": "LES FOURGS - SA", "LAT": 46.853333, "LON": 6.428333, "ALTI": 1170, "MIN_DATE": "1987-01-01", "MAX_DATE": "1992-04-30" }, "geometry": { "type": "Point", "coordinates": [ 6.428333, 46.853333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25271001, "NOM_USUEL": "GILLEY - VILLAGE", "LAT": 47.048333, "LON": 6.48, "ALTI": 870, "MIN_DATE": "1950-06-01", "MAX_DATE": "1952-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.48, 47.048333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25285001, "NOM_USUEL": "GRAND'COMBE-CHATELEU_SAPC", "LAT": 47.019167, "LON": 6.567167, "ALTI": 769, "MIN_DATE": "2015-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.567167, 47.019167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25315002, "NOM_USUEL": "ISLE - SA", "LAT": 47.441667, "LON": 6.581667, "ALTI": 320, "MIN_DATE": "1992-01-01", "MAX_DATE": "2004-11-30" }, "geometry": { "type": "Point", "coordinates": [ 6.581667, 47.441667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25348002, "NOM_USUEL": "LONGEVILLES", "LAT": 46.743667, "LON": 6.3415, "ALTI": 1193, "MIN_DATE": "1992-11-01", "MAX_DATE": "2015-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.3415, 46.743667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25356003, "NOM_USUEL": "MAICHE", "LAT": 47.243, "LON": 6.791, "ALTI": 825, "MIN_DATE": "1992-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.791, 47.243 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25372001, "NOM_USUEL": "MEDIERE", "LAT": 47.456, "LON": 6.601333, "ALTI": 302, "MIN_DATE": "2008-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.601333, 47.456 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25380001, "NOM_USUEL": "MOROND", "LAT": 46.751667, "LON": 6.355, "ALTI": 1423, "MIN_DATE": "1993-10-01", "MAX_DATE": "2005-09-02" }, "geometry": { "type": "Point", "coordinates": [ 6.355, 46.751667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25386001, "NOM_USUEL": "MONTANCY", "LAT": 47.368333, "LON": 7.03, "ALTI": 840, "MIN_DATE": "1996-12-01", "MAX_DATE": "2001-06-30" }, "geometry": { "type": "Point", "coordinates": [ 7.03, 47.368333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25388002, "NOM_USUEL": "MONTBELIARD", "LAT": 47.503667, "LON": 6.813333, "ALTI": 318, "MIN_DATE": "1988-01-01", "MAX_DATE": "2015-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.813333, 47.503667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25400001, "NOM_USUEL": "MONTGESOYE", "LAT": 47.078333, "LON": 6.195, "ALTI": 341, "MIN_DATE": "1984-05-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.195, 47.078333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25411005, "NOM_USUEL": "MORTEAU SA", "LAT": 47.062333, "LON": 6.612167, "ALTI": 760, "MIN_DATE": "1990-08-01", "MAX_DATE": "2016-06-06" }, "geometry": { "type": "Point", "coordinates": [ 6.612167, 47.062333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25413002, "NOM_USUEL": "SOURCE DU DOUBS", "LAT": 46.707, "LON": 6.2095, "ALTI": 940, "MIN_DATE": "1997-08-01", "MAX_DATE": "2018-10-15" }, "geometry": { "type": "Point", "coordinates": [ 6.2095, 46.707 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25417001, "NOM_USUEL": "NAISEY LES GRANGES", "LAT": 47.2155, "LON": 6.23, "ALTI": 466, "MIN_DATE": "2012-01-23", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.23, 47.2155 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25418001, "NOM_USUEL": "NANCRAY", "LAT": 47.245, "LON": 6.181667, "ALTI": 430, "MIN_DATE": "1957-08-01", "MAX_DATE": "1984-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.181667, 47.245 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25432001, "NOM_USUEL": "ORCHAMPS-VENNES", "LAT": 47.126833, "LON": 6.520333, "ALTI": 761, "MIN_DATE": "1969-01-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.520333, 47.126833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25434002, "NOM_USUEL": "ORNANS", "LAT": 47.106667, "LON": 6.148333, "ALTI": 350, "MIN_DATE": "1994-04-01", "MAX_DATE": "1999-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.148333, 47.106667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25440002, "NOM_USUEL": "OUHANS - LOUE", "LAT": 46.996667, "LON": 6.291667, "ALTI": 530, "MIN_DATE": "1962-08-01", "MAX_DATE": "1963-09-30" }, "geometry": { "type": "Point", "coordinates": [ 6.291667, 46.996667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25442001, "NOM_USUEL": "OYE ET PALLET", "LAT": 46.855, "LON": 6.335, "ALTI": 870, "MIN_DATE": "1954-01-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.335, 46.855 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25446001, "NOM_USUEL": "PASSAVANT - PEQUIGNOTS", "LAT": 47.275, "LON": 6.383333, "ALTI": 550, "MIN_DATE": "1960-01-01", "MAX_DATE": "1973-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.383333, 47.275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25446002, "NOM_USUEL": "PASSAVANT", "LAT": 47.275, "LON": 6.383333, "ALTI": 630, "MIN_DATE": "1951-06-01", "MAX_DATE": "1958-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.383333, 47.275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25468001, "NOM_USUEL": "POULIGNEY", "LAT": 47.333833, "LON": 6.199, "ALTI": 286, "MIN_DATE": "1990-05-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 6.199, 47.333833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25494001, "NOM_USUEL": "LA BOISSAUDE ROCHEJEAN", "LAT": 46.729, "LON": 6.322833, "ALTI": 1222, "MIN_DATE": "2006-06-27", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.322833, 46.729 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25512001, "NOM_USUEL": "LE RUSSEY", "LAT": 47.162167, "LON": 6.7375, "ALTI": 891, "MIN_DATE": "1963-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.7375, 47.162167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25529002, "NOM_USUEL": "SANCEY-LE-GRAND", "LAT": 47.3015, "LON": 6.581667, "ALTI": 490, "MIN_DATE": "2004-11-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 6.581667, 47.3015 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25532001, "NOM_USUEL": "SAONE", "LAT": 47.202667, "LON": 6.092667, "ALTI": 397, "MIN_DATE": "1985-09-01", "MAX_DATE": "2019-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.092667, 47.202667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25591001, "NOM_USUEL": "VAUFREY", "LAT": 47.348333, "LON": 6.923333, "ALTI": 408, "MIN_DATE": "1950-06-01", "MAX_DATE": "1968-02-29" }, "geometry": { "type": "Point", "coordinates": [ 6.923333, 47.348333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25595001, "NOM_USUEL": "VELLEROT", "LAT": 47.358333, "LON": 6.606667, "ALTI": 835, "MIN_DATE": "1961-04-01", "MAX_DATE": "1981-01-31" }, "geometry": { "type": "Point", "coordinates": [ 6.606667, 47.358333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25601002, "NOM_USUEL": "VERCEL", "LAT": 47.183333, "LON": 6.4, "ALTI": 665, "MIN_DATE": "1987-04-01", "MAX_DATE": "1997-05-31" }, "geometry": { "type": "Point", "coordinates": [ 6.4, 47.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25632001, "NOM_USUEL": "VOUJEAUCOURT", "LAT": 47.475, "LON": 6.773333, "ALTI": 315, "MIN_DATE": "1972-09-01", "MAX_DATE": "1977-06-30" }, "geometry": { "type": "Point", "coordinates": [ 6.773333, 47.475 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 25635001, "NOM_USUEL": "LOMONT", "LAT": 47.358667, "LON": 6.625667, "ALTI": 820, "MIN_DATE": "1996-12-01", "MAX_DATE": "2015-03-31" }, "geometry": { "type": "Point", "coordinates": [ 6.625667, 47.358667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97101001, "NOM_USUEL": "LES ABYMES BOYVINIERE", "LAT": 16.297833, "LON": -61.497, "ALTI": 15, "MIN_DATE": "1929-01-01", "MAX_DATE": "2023-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.497, 16.297833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97103003, "NOM_USUEL": "BAIE-MAHAULT DUPUY", "LAT": 16.257, "LON": -61.612167, "ALTI": 22, "MIN_DATE": "1932-01-01", "MAX_DATE": "2021-07-31" }, "geometry": { "type": "Point", "coordinates": [ -61.612167, 16.257 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97115003, "NOM_USUEL": "LAMENTIN BLACHON", "LAT": 16.279833, "LON": -61.629167, "ALTI": 16, "MIN_DATE": "1935-01-01", "MAX_DATE": "2017-06-30" }, "geometry": { "type": "Point", "coordinates": [ -61.629167, 16.279833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97116002, "NOM_USUEL": "MORNE-A-L'EAU BLANCHET", "LAT": 16.320667, "LON": -61.418667, "ALTI": 11, "MIN_DATE": "1938-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.418667, 16.320667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97118001, "NOM_USUEL": "PETIT-BOURG VERSAILLES", "LAT": 16.226, "LON": -61.5935, "ALTI": 26, "MIN_DATE": "1929-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.5935, 16.226 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97101011, "NOM_USUEL": "LES ABYMES JARDIN D'ESSAI", "LAT": 16.249667, "LON": -61.527833, "ALTI": 5, "MIN_DATE": "1986-01-01", "MAX_DATE": "2016-06-30" }, "geometry": { "type": "Point", "coordinates": [ -61.527833, 16.249667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97101014, "NOM_USUEL": "LES ABYMES CHAZEAU_SAPC", "LAT": 16.2875, "LON": -61.453167, "ALTI": 95, "MIN_DATE": "1995-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.453167, 16.2875 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97101015, "NOM_USUEL": "LE RAIZET AERO", "LAT": 16.264, "LON": -61.516333, "ALTI": 11, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.516333, 16.264 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97102005, "NOM_USUEL": "ANSE-BERTRAND LA JOYEUSE", "LAT": 16.474333, "LON": -61.487667, "ALTI": 19, "MIN_DATE": "2009-05-30", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.487667, 16.474333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97103008, "NOM_USUEL": "BAIE-MAHAULT CONVENANCE_SAPC", "LAT": 16.242833, "LON": -61.595667, "ALTI": 48, "MIN_DATE": "1954-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.595667, 16.242833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97104005, "NOM_USUEL": "BAILLIF AERO", "LAT": 16.012167, "LON": -61.740167, "ALTI": 21, "MIN_DATE": "1994-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.740167, 16.012167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97105002, "NOM_USUEL": "BASSE-TERRE GUILLARD", "LAT": 15.996167, "LON": -61.720667, "ALTI": 92, "MIN_DATE": "1953-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.720667, 15.996167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97105003, "NOM_USUEL": "BASSE-TERRE CONSEIL REGIONAL", "LAT": 15.995833, "LON": -61.716833, "ALTI": 125, "MIN_DATE": "1996-06-01", "MAX_DATE": "2019-09-29" }, "geometry": { "type": "Point", "coordinates": [ -61.716833, 15.995833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97106001, "NOM_USUEL": "BOUILLANTE GEND PIGEON_SAPC", "LAT": 16.149667, "LON": -61.774, "ALTI": 34, "MIN_DATE": "1965-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.774, 16.149667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97107002, "NOM_USUEL": "CAPESTERRE-B-EAU NEUFCHATEAU", "LAT": 16.0785, "LON": -61.6, "ALTI": 253, "MIN_DATE": "1952-01-16", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.6, 16.0785 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97107004, "NOM_USUEL": "CAPESTERRE-B-EAU GEN", "LAT": 16.038333, "LON": -61.567167, "ALTI": 19, "MIN_DATE": "1965-01-01", "MAX_DATE": "2017-05-31" }, "geometry": { "type": "Point", "coordinates": [ -61.567167, 16.038333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97107008, "NOM_USUEL": "CAPESTERRE-B-EAU CARBET_SAPC", "LAT": 16.041833, "LON": -61.6385, "ALTI": 597, "MIN_DATE": "1978-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.6385, 16.041833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97107009, "NOM_USUEL": "CAPESTERRE-BE BOIS DEBOUT_SAPC", "LAT": 16.021667, "LON": -61.585833, "ALTI": 70, "MIN_DATE": "1984-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.585833, 16.021667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97108001, "NOM_USUEL": "CAPESTERRE-M-GALANTE BELLEVUE", "LAT": 15.926667, "LON": -61.241167, "ALTI": 142, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-03" }, "geometry": { "type": "Point", "coordinates": [ -61.241167, 15.926667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97108003, "NOM_USUEL": "CAPESTERRE-M-GALANTE VIDON", "LAT": 15.9, "LON": -61.248833, "ALTI": 146, "MIN_DATE": "1970-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.248833, 15.9 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97109003, "NOM_USUEL": "GOURBEYRE GROS-MORNE DOLE", "LAT": 16.003167, "LON": -61.6725, "ALTI": 477, "MIN_DATE": "1991-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.6725, 16.003167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97109004, "NOM_USUEL": "GOURBEYRE HOUELMONT", "LAT": 15.979833, "LON": -61.703167, "ALTI": 418, "MIN_DATE": "1994-01-01", "MAX_DATE": "2023-03-31" }, "geometry": { "type": "Point", "coordinates": [ -61.703167, 15.979833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97110001, "NOM_USUEL": "LA DESIRADE GENDARMERIE", "LAT": 16.297833, "LON": -61.095833, "ALTI": 7, "MIN_DATE": "1952-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.095833, 16.297833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97110002, "NOM_USUEL": "LA DESIRADE METEO", "LAT": 16.335, "LON": -61.004, "ALTI": 27, "MIN_DATE": "1950-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.004, 16.335 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97111001, "NOM_USUEL": "DESHAIES GENDARMERIE", "LAT": 16.310667, "LON": -61.790667, "ALTI": 42, "MIN_DATE": "1952-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.790667, 16.310667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97112001, "NOM_USUEL": "GRAND-BOURG GENDARMERIE", "LAT": 15.885333, "LON": -61.314667, "ALTI": 9, "MIN_DATE": "1951-04-01", "MAX_DATE": "2017-01-31" }, "geometry": { "type": "Point", "coordinates": [ -61.314667, 15.885333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97112003, "NOM_USUEL": "GRAND-BOURG LES BASSES AERO", "LAT": 15.8695, "LON": -61.272167, "ALTI": 10, "MIN_DATE": "1986-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.272167, 15.8695 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97113003, "NOM_USUEL": "LE GOSIER SAINT-FELIX", "LAT": 16.203167, "LON": -61.460333, "ALTI": 19, "MIN_DATE": "1982-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.460333, 16.203167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97113009, "NOM_USUEL": "LE GOSIER LEROUX_SAPC", "LAT": 16.246333, "LON": -61.471167, "ALTI": 60, "MIN_DATE": "2020-12-04", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.471167, 16.246333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97114008, "NOM_USUEL": "GOYAVE CHRISTOPHE", "LAT": 16.109833, "LON": -61.586167, "ALTI": 115, "MIN_DATE": "2003-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.586167, 16.109833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97115004, "NOM_USUEL": "LAMENTIN GENDARMERIE", "LAT": 16.2675, "LON": -61.640333, "ALTI": 35, "MIN_DATE": "1951-07-01", "MAX_DATE": "2017-01-31" }, "geometry": { "type": "Point", "coordinates": [ -61.640333, 16.2675 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97116006, "NOM_USUEL": "MORNE A L'EAU GENDARMERIE", "LAT": 16.3305, "LON": -61.460333, "ALTI": 11, "MIN_DATE": "1951-06-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.460333, 16.3305 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97116007, "NOM_USUEL": "MORNE A L EAU MAIRIE", "LAT": 16.328667, "LON": -61.4565, "ALTI": 13, "MIN_DATE": "2013-12-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.4565, 16.328667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97117002, "NOM_USUEL": "LE MOULE MONTPLAISIR", "LAT": 16.296667, "LON": -61.318333, "ALTI": 41, "MIN_DATE": "1950-04-01", "MAX_DATE": "2023-07-30" }, "geometry": { "type": "Point", "coordinates": [ -61.318333, 16.296667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97117006, "NOM_USUEL": "LE MOULE L'ECLUSE", "LAT": 16.309833, "LON": -61.367333, "ALTI": 18, "MIN_DATE": "1960-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.367333, 16.309833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97117008, "NOM_USUEL": "LE MOULE SAINTE-MARGUERITE", "LAT": 16.3665, "LON": -61.407667, "ALTI": 65, "MIN_DATE": "1977-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.407667, 16.3665 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97117012, "NOM_USUEL": "LE MOULE GARDEL-INRA", "LAT": 16.301667, "LON": -61.323333, "ALTI": 30, "MIN_DATE": "1991-01-01", "MAX_DATE": "2023-07-30" }, "geometry": { "type": "Point", "coordinates": [ -61.323333, 16.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97117013, "NOM_USUEL": "LE MOULE LAUREAL", "LAT": 16.314167, "LON": -61.349, "ALTI": 24, "MIN_DATE": "1994-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.349, 16.314167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97117014, "NOM_USUEL": "LE MOULE BOISVIN", "LAT": 16.293333, "LON": -61.346833, "ALTI": 33, "MIN_DATE": "2009-08-13", "MAX_DATE": "2020-05-10" }, "geometry": { "type": "Point", "coordinates": [ -61.346833, 16.293333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97117015, "NOM_USUEL": "LE MOULE BOIS DAVID", "LAT": 16.3065, "LON": -61.328667, "ALTI": 29, "MIN_DATE": "2013-06-16", "MAX_DATE": "2022-07-31" }, "geometry": { "type": "Point", "coordinates": [ -61.328667, 16.3065 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97118006, "NOM_USUEL": "PETIT-BOURG GENDARMERIE", "LAT": 16.196667, "LON": -61.600167, "ALTI": 55, "MIN_DATE": "1951-01-01", "MAX_DATE": "2019-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.600167, 16.196667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97118007, "NOM_USUEL": "PETIT-BOURG DUCLOS-INRA", "LAT": 16.205, "LON": -61.661667, "ALTI": 110, "MIN_DATE": "1954-01-01", "MAX_DATE": "2023-07-30" }, "geometry": { "type": "Point", "coordinates": [ -61.661667, 16.205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97118008, "NOM_USUEL": "PETIT-BOURG PROVIDENCE_SAPC", "LAT": 16.177167, "LON": -61.688, "ALTI": 272, "MIN_DATE": "1977-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.688, 16.177167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97118009, "NOM_USUEL": "PETIT-BOURG ROUJOL", "LAT": 16.181, "LON": -61.5895, "ALTI": 12, "MIN_DATE": "1986-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.5895, 16.181 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97118018, "NOM_USUEL": "PETIT-BOURG GROS-MORNE_SAPC", "LAT": 16.1555, "LON": -61.623, "ALTI": 160, "MIN_DATE": "2015-10-17", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.623, 16.1555 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97119006, "NOM_USUEL": "PETIT-CANAL GROS CAP", "LAT": 16.413167, "LON": -61.415667, "ALTI": 43, "MIN_DATE": "1976-07-08", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.415667, 16.413167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97119008, "NOM_USUEL": "PETIT-CANAL GODET-INRA", "LAT": 16.405, "LON": -61.481667, "ALTI": 35, "MIN_DATE": "1991-06-01", "MAX_DATE": "2023-07-30" }, "geometry": { "type": "Point", "coordinates": [ -61.481667, 16.405 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97121002, "NOM_USUEL": "POINTE-NOIRE COL DES MAMELLES", "LAT": 16.1795, "LON": -61.724667, "ALTI": 510, "MIN_DATE": "1973-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.724667, 16.1795 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97121004, "NOM_USUEL": "POINTE-NOIRE GENDARMERIE", "LAT": 16.237, "LON": -61.7915, "ALTI": 43, "MIN_DATE": "1982-01-01", "MAX_DATE": "2017-05-31" }, "geometry": { "type": "Point", "coordinates": [ -61.7915, 16.237 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97121005, "NOM_USUEL": "POINTE-NOIRE BELLEVUE", "LAT": 16.232167, "LON": -61.776333, "ALTI": 213, "MIN_DATE": "1988-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.776333, 16.232167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97121006, "NOM_USUEL": "POINTE NOIRE MORPHY", "LAT": 16.252333, "LON": -61.799167, "ALTI": 75, "MIN_DATE": "2016-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.799167, 16.252333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97122004, "NOM_USUEL": "PORT-LOUIS GENDARMERIE", "LAT": 16.421833, "LON": -61.525167, "ALTI": 18, "MIN_DATE": "1951-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.525167, 16.421833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97122007, "NOM_USUEL": "PORT-LOUIS BEAUPLAN", "LAT": 16.413333, "LON": -61.469167, "ALTI": 19, "MIN_DATE": "1976-08-01", "MAX_DATE": "2015-02-28" }, "geometry": { "type": "Point", "coordinates": [ -61.469167, 16.413333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97122009, "NOM_USUEL": "PORT-LOUIS HAUT DE LA MONTAGNE", "LAT": 16.442167, "LON": -61.469167, "ALTI": 72, "MIN_DATE": "1992-01-01", "MAX_DATE": "2020-12-11" }, "geometry": { "type": "Point", "coordinates": [ -61.469167, 16.442167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97123001, "NOM_USUEL": "ST-BARTHELEMY METEO", "LAT": 17.9015, "LON": -62.852167, "ALTI": 44, "MIN_DATE": "1959-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -62.852167, 17.9015 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97123002, "NOM_USUEL": "ST-BARTHELEMY LORIENT", "LAT": 17.906333, "LON": -62.8235, "ALTI": 3, "MIN_DATE": "1973-01-01", "MAX_DATE": "2013-11-30" }, "geometry": { "type": "Point", "coordinates": [ -62.8235, 17.906333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97123004, "NOM_USUEL": "ST-BARTHELEMY ANSE-D-FLAMANDS", "LAT": 17.920167, "LON": -62.860833, "ALTI": 8, "MIN_DATE": "1979-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -62.860833, 17.920167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97123006, "NOM_USUEL": "SAINT-BARTHELEMY SALINE", "LAT": 17.896333, "LON": -62.828, "ALTI": 10, "MIN_DATE": "2014-01-01", "MAX_DATE": "2020-01-31" }, "geometry": { "type": "Point", "coordinates": [ -62.828, 17.896333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97124003, "NOM_USUEL": "ST-CLAUDE PARNASSE", "LAT": 16.026333, "LON": -61.687, "ALTI": 643, "MIN_DATE": "1964-01-01", "MAX_DATE": "2023-08-31" }, "geometry": { "type": "Point", "coordinates": [ -61.687, 16.026333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97124004, "NOM_USUEL": "ST-CLAUDE GEN BONNE-TERRE", "LAT": 16.0215, "LON": -61.707167, "ALTI": 374, "MIN_DATE": "1971-01-01", "MAX_DATE": "2018-01-15" }, "geometry": { "type": "Point", "coordinates": [ -61.707167, 16.0215 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97124006, "NOM_USUEL": "ST-CLAUDE MATOUBA_SAPC", "LAT": 16.046333, "LON": -61.693667, "ALTI": 650, "MIN_DATE": "1983-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.693667, 16.046333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97124008, "NOM_USUEL": "ST-CLAUDE SOUFRIERE", "LAT": 16.045, "LON": -61.662667, "ALTI": 1417, "MIN_DATE": "1983-07-01", "MAX_DATE": "2021-09-08" }, "geometry": { "type": "Point", "coordinates": [ -61.662667, 16.045 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97124009, "NOM_USUEL": "ST-CLAUDE CITERNE", "LAT": 16.032667, "LON": -61.656, "ALTI": 1141, "MIN_DATE": "1983-04-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.656, 16.032667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97124010, "NOM_USUEL": "ST-CLAUDE MAISON-VOLCAN_SAPC", "LAT": 16.036, "LON": -61.665333, "ALTI": 1104, "MIN_DATE": "1994-08-01", "MAX_DATE": "2024-04-04" }, "geometry": { "type": "Point", "coordinates": [ -61.665333, 16.036 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97125001, "NOM_USUEL": "ST-FRANCOIS RENEVILLE", "LAT": 16.2845, "LON": -61.311, "ALTI": 40, "MIN_DATE": "1950-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.311, 16.2845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97125003, "NOM_USUEL": "ST-FRANCOIS POMBIRAY", "LAT": 16.29, "LON": -61.3, "ALTI": 44, "MIN_DATE": "1951-01-16", "MAX_DATE": "2021-10-25" }, "geometry": { "type": "Point", "coordinates": [ -61.3, 16.29 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97125005, "NOM_USUEL": "ST-FRANCOIS GENDARMERIE", "LAT": 16.251167, "LON": -61.277167, "ALTI": 8, "MIN_DATE": "1954-01-01", "MAX_DATE": "2017-02-01" }, "geometry": { "type": "Point", "coordinates": [ -61.277167, 16.251167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97125008, "NOM_USUEL": "SAINT-FRANCOIS LA SIMONIERE", "LAT": 16.265167, "LON": -61.317, "ALTI": 39, "MIN_DATE": "2010-07-01", "MAX_DATE": "2016-10-13" }, "geometry": { "type": "Point", "coordinates": [ -61.317, 16.265167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97125009, "NOM_USUEL": "SAINT FRANCOIS BELLOC", "LAT": 16.2895, "LON": -61.303167, "ALTI": 32, "MIN_DATE": "2010-08-20", "MAX_DATE": "2023-07-30" }, "geometry": { "type": "Point", "coordinates": [ -61.303167, 16.2895 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97125010, "NOM_USUEL": "SAINT-FRANCOIS MAIRIE", "LAT": 16.2555, "LON": -61.268667, "ALTI": 16, "MIN_DATE": "2015-04-01", "MAX_DATE": "2019-09-30" }, "geometry": { "type": "Point", "coordinates": [ -61.268667, 16.2555 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97125011, "NOM_USUEL": "SAINT FRANCOIS AERODROME", "LAT": 16.257167, "LON": -61.2565, "ALTI": 1, "MIN_DATE": "2017-11-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.2565, 16.257167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97126002, "NOM_USUEL": "ST-LOUIS PRESBYTERE", "LAT": 15.9565, "LON": -61.317833, "ALTI": 6, "MIN_DATE": "1979-01-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ -61.317833, 15.9565 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97127002, "NOM_USUEL": "ST-MARTIN MARIGOT GENDARMERIE", "LAT": 18.067333, "LON": -63.070667, "ALTI": 39, "MIN_DATE": "1965-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -63.070667, 18.067333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97127004, "NOM_USUEL": "ST-MARTIN GRAND-CASE", "LAT": 18.100667, "LON": -63.048, "ALTI": 5, "MIN_DATE": "1969-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -63.048, 18.100667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97127006, "NOM_USUEL": "ST-MARTIN MARIGOT DDE", "LAT": 18.072167, "LON": -63.083167, "ALTI": 5, "MIN_DATE": "1986-01-01", "MAX_DATE": "2011-10-31" }, "geometry": { "type": "Point", "coordinates": [ -63.083167, 18.072167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97128001, "NOM_USUEL": "STE-ANNE COURCELLES", "LAT": 16.26, "LON": -61.328333, "ALTI": 40, "MIN_DATE": "1950-01-01", "MAX_DATE": "2017-10-27" }, "geometry": { "type": "Point", "coordinates": [ -61.328333, 16.26 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97128004, "NOM_USUEL": "STE-ANNE MARLY", "LAT": 16.285, "LON": -61.335, "ALTI": 42, "MIN_DATE": "1965-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.335, 16.285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97128005, "NOM_USUEL": "STE-ANNE GENDARMERIE", "LAT": 16.225833, "LON": -61.376833, "ALTI": 1, "MIN_DATE": "1968-01-01", "MAX_DATE": "2019-11-30" }, "geometry": { "type": "Point", "coordinates": [ -61.376833, 16.225833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97128008, "NOM_USUEL": "STE-ANNE GENTILLY", "LAT": 16.276667, "LON": -61.363333, "ALTI": 45, "MIN_DATE": "1979-01-01", "MAX_DATE": "2023-07-30" }, "geometry": { "type": "Point", "coordinates": [ -61.363333, 16.276667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97128009, "NOM_USUEL": "STE-ANNE COLLEGE", "LAT": 16.229, "LON": -61.377333, "ALTI": 4, "MIN_DATE": "1996-06-01", "MAX_DATE": "2013-05-14" }, "geometry": { "type": "Point", "coordinates": [ -61.377333, 16.229 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97128010, "NOM_USUEL": "SAINTE-ANNE DESHAUTEURS_SAPC", "LAT": 16.253333, "LON": -61.429833, "ALTI": 129, "MIN_DATE": "2017-03-17", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.429833, 16.253333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97129005, "NOM_USUEL": "STE-ROSE GENDARMERIE", "LAT": 16.3295, "LON": -61.699833, "ALTI": 32, "MIN_DATE": "1971-01-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.699833, 16.3295 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97129007, "NOM_USUEL": "STE-ROSE LES GALBAS", "LAT": 16.301667, "LON": -61.675, "ALTI": 23, "MIN_DATE": "1972-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.675, 16.301667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97129011, "NOM_USUEL": "STE-ROSE CLUGNY", "LAT": 16.353833, "LON": -61.747333, "ALTI": 10, "MIN_DATE": "1986-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.747333, 16.353833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97129012, "NOM_USUEL": "STE-ROSE BELLE-RIVIERE", "LAT": 16.275167, "LON": -61.671667, "ALTI": 12, "MIN_DATE": "1986-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.671667, 16.275167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97129015, "NOM_USUEL": "STE-ROSE VIARD", "LAT": 16.314167, "LON": -61.681, "ALTI": 10, "MIN_DATE": "1964-08-23", "MAX_DATE": "2024-04-05" }, "geometry": { "type": "Point", "coordinates": [ -61.681, 16.314167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97129017, "NOM_USUEL": "SAINTE-ROSE SOFAIA_SAPC", "LAT": 16.291333, "LON": -61.7285, "ALTI": 332, "MIN_DATE": "2018-10-02", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.7285, 16.291333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97129018, "NOM_USUEL": "SAINTE-ROSE GRANDE-H_SAPC", "LAT": 16.262333, "LON": -61.706167, "ALTI": 132, "MIN_DATE": "2019-01-31", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.706167, 16.262333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97131001, "NOM_USUEL": "TERRE-DE-HAUT CASSIN", "LAT": 15.865833, "LON": -61.5875, "ALTI": 6, "MIN_DATE": "1975-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -61.5875, 15.865833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97131005, "NOM_USUEL": "TERRE DE HAUT FRANCE TÉLÉCOM", "LAT": 15.864667, "LON": -61.589833, "ALTI": 44, "MIN_DATE": "2007-05-12", "MAX_DATE": "2017-04-25" }, "geometry": { "type": "Point", "coordinates": [ -61.589833, 15.864667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97133001, "NOM_USUEL": "VIEUX-FORT BOURG", "LAT": 15.948167, "LON": -61.698, "ALTI": 39, "MIN_DATE": "1979-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.698, 15.948167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97134001, "NOM_USUEL": "VIEUX-HABITANTS GEND_SAPC", "LAT": 16.054, "LON": -61.7555, "ALTI": 136, "MIN_DATE": "1964-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.7555, 16.054 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 97134008, "NOM_USUEL": "VIEUX HABITANTS LAURICHESSE", "LAT": 16.0825, "LON": -61.747333, "ALTI": 250, "MIN_DATE": "2010-01-06", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -61.747333, 16.0825 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48002001, "NOM_USUEL": "ALBARET-SAINTE-MARIE LAGARDE", "LAT": 44.883333, "LON": 3.25, "ALTI": 1050, "MIN_DATE": "1948-07-01", "MAX_DATE": "1977-06-30" }, "geometry": { "type": "Point", "coordinates": [ 3.25, 44.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48009001, "NOM_USUEL": "AUMONT AUBRAC", "LAT": 44.727167, "LON": 3.279833, "ALTI": 1018, "MIN_DATE": "1949-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.279833, 44.727167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48010001, "NOM_USUEL": "AUROUX", "LAT": 44.753333, "LON": 3.728333, "ALTI": 1000, "MIN_DATE": "1884-01-01", "MAX_DATE": "1886-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.728333, 44.753333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48014001, "NOM_USUEL": "BAGNOLS", "LAT": 44.505167, "LON": 3.667667, "ALTI": 918, "MIN_DATE": "1873-01-01", "MAX_DATE": "2020-02-29" }, "geometry": { "type": "Point", "coordinates": [ 3.667667, 44.505167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48015002, "NOM_USUEL": "PIED-DE-BORNE AGGLOMERATION", "LAT": 44.475, "LON": 3.983333, "ALTI": 352, "MIN_DATE": "1884-06-01", "MAX_DATE": "1890-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.983333, 44.475 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48016001, "NOM_USUEL": "BALSIEGES AGGLOMERATION", "LAT": 44.48, "LON": 3.456667, "ALTI": 685, "MIN_DATE": "1908-01-01", "MAX_DATE": "1911-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.456667, 44.48 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48017001, "NOM_USUEL": "BANASSAC AGGLOMERATION", "LAT": 44.433333, "LON": 3.2, "ALTI": 532, "MIN_DATE": "1884-07-01", "MAX_DATE": "1892-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.2, 44.433333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48019001, "NOM_USUEL": "BARRE-DES-CEVENNES", "LAT": 44.250333, "LON": 3.651333, "ALTI": 897, "MIN_DATE": "1884-01-01", "MAX_DATE": "2019-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.651333, 44.250333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48020001, "NOM_USUEL": "BASSURELS TUNNEL DE MARQUAIRES", "LAT": 44.178333, "LON": 3.623333, "ALTI": 970, "MIN_DATE": "1891-01-01", "MAX_DATE": "1959-04-30" }, "geometry": { "type": "Point", "coordinates": [ 3.623333, 44.178333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48020002, "NOM_USUEL": "BASSURELS AIRE DE COTE", "LAT": 44.178333, "LON": 3.623333, "ALTI": 1110, "MIN_DATE": "1905-01-01", "MAX_DATE": "1913-12-21" }, "geometry": { "type": "Point", "coordinates": [ 3.623333, 44.178333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48021001, "NOM_USUEL": "LA BASTIDE", "LAT": 44.6, "LON": 3.9, "ALTI": 1000, "MIN_DATE": "1889-04-16", "MAX_DATE": "1970-11-30" }, "geometry": { "type": "Point", "coordinates": [ 3.9, 44.6 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48021002, "NOM_USUEL": "LA BASTIDE-PUYLAURENT LE THORT", "LAT": 44.59, "LON": 3.906667, "ALTI": 1100, "MIN_DATE": "1873-01-01", "MAX_DATE": "1890-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.906667, 44.59 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48023001, "NOM_USUEL": "BELVEZET", "LAT": 44.566667, "LON": 3.75, "ALTI": 1185, "MIN_DATE": "1923-01-01", "MAX_DATE": "1978-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.75, 44.566667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48036001, "NOM_USUEL": "CASSAGNAS", "LAT": 44.270333, "LON": 3.763333, "ALTI": 802, "MIN_DATE": "1884-01-01", "MAX_DATE": "2024-02-29" }, "geometry": { "type": "Point", "coordinates": [ 3.763333, 44.270333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48037001, "NOM_USUEL": "CHADENET LA LOUBIERE", "LAT": 44.518333, "LON": 3.633333, "ALTI": 1140, "MIN_DATE": "1908-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.633333, 44.518333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48038001, "NOM_USUEL": "CHAMBON-LE-CHATEAU", "LAT": 44.851667, "LON": 3.658333, "ALTI": 1012, "MIN_DATE": "1884-10-01", "MAX_DATE": "1890-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.658333, 44.851667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48039001, "NOM_USUEL": "CHANAC", "LAT": 44.465333, "LON": 3.3405, "ALTI": 672, "MIN_DATE": "1949-07-01", "MAX_DATE": "2021-01-01" }, "geometry": { "type": "Point", "coordinates": [ 3.3405, 44.465333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48043001, "NOM_USUEL": "CHATEAUNEUF-DE-RANDON", "LAT": 44.638167, "LON": 3.679833, "ALTI": 1247, "MIN_DATE": "1874-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.679833, 44.638167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48045002, "NOM_USUEL": "CHAUDEYRAC", "LAT": 44.658333, "LON": 3.756667, "ALTI": 1222, "MIN_DATE": "1884-06-01", "MAX_DATE": "1938-12-17" }, "geometry": { "type": "Point", "coordinates": [ 3.756667, 44.658333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48046001, "NOM_USUEL": "CHAULHAC AGGLOMERATION", "LAT": 44.921667, "LON": 3.256667, "ALTI": 914, "MIN_DATE": "1884-06-01", "MAX_DATE": "1890-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.256667, 44.921667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48048001, "NOM_USUEL": "CHEYLARD-L'EVEQUE CHAUDEYRAT", "LAT": 44.646667, "LON": 3.801667, "ALTI": 1150, "MIN_DATE": "1872-07-01", "MAX_DATE": "1883-10-31" }, "geometry": { "type": "Point", "coordinates": [ 3.801667, 44.646667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48051001, "NOM_USUEL": "COLLET DE DEZE", "LAT": 44.245, "LON": 3.921667, "ALTI": 348, "MIN_DATE": "1884-06-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.921667, 44.245 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48053001, "NOM_USUEL": "CUBIERES AGGLOMERATION", "LAT": 44.473333, "LON": 3.773333, "ALTI": 996, "MIN_DATE": "1884-08-21", "MAX_DATE": "1908-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.773333, 44.473333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48061002, "NOM_USUEL": "FLORAC", "LAT": 44.309, "LON": 3.596333, "ALTI": 618, "MIN_DATE": "1859-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.596333, 44.309 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48070001, "NOM_USUEL": "GRANDRIEU", "LAT": 44.783333, "LON": 3.633333, "ALTI": 1127, "MIN_DATE": "1884-01-01", "MAX_DATE": "1987-06-30" }, "geometry": { "type": "Point", "coordinates": [ 3.633333, 44.783333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48074002, "NOM_USUEL": "HURES-LA-PARADE AGGLOMERATION", "LAT": 44.25, "LON": 3.426667, "ALTI": 1020, "MIN_DATE": "1884-06-01", "MAX_DATE": "1930-02-28" }, "geometry": { "type": "Point", "coordinates": [ 3.426667, 44.25 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48074003, "NOM_USUEL": "HURES-LA-PARADE", "LAT": 44.249667, "LON": 3.403, "ALTI": 1028, "MIN_DATE": "1948-12-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.403, 44.249667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48081001, "NOM_USUEL": "LANUEJOLS AGGLOMERATION", "LAT": 44.5, "LON": 3.57, "ALTI": 900, "MIN_DATE": "1908-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.57, 44.5 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48083001, "NOM_USUEL": "LES LAUBIES AGGLOMERATION", "LAT": 44.685, "LON": 3.43, "ALTI": 1273, "MIN_DATE": "1873-01-01", "MAX_DATE": "1883-10-31" }, "geometry": { "type": "Point", "coordinates": [ 3.43, 44.685 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48087001, "NOM_USUEL": "MALBOUZON", "LAT": 44.700333, "LON": 3.136167, "ALTI": 1174, "MIN_DATE": "1949-09-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.136167, 44.700333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48089001, "NOM_USUEL": "MALZIEU-FORAIN", "LAT": 44.863333, "LON": 3.409333, "ALTI": 1153, "MIN_DATE": "1927-01-01", "MAX_DATE": "1961-11-30" }, "geometry": { "type": "Point", "coordinates": [ 3.409333, 44.863333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48090001, "NOM_USUEL": "MALZIEU-VILLE", "LAT": 44.85, "LON": 3.333333, "ALTI": 860, "MIN_DATE": "1884-09-11", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.333333, 44.85 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48090002, "NOM_USUEL": "MALZIEU-VILLE", "LAT": 44.873333, "LON": 3.316667, "ALTI": 840, "MIN_DATE": "1946-01-01", "MAX_DATE": "1999-07-31" }, "geometry": { "type": "Point", "coordinates": [ 3.316667, 44.873333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48092001, "NOM_USUEL": "MARVEJOLS", "LAT": 44.55, "LON": 3.283333, "ALTI": 710, "MIN_DATE": "1871-12-01", "MAX_DATE": "1981-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.283333, 44.55 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48093001, "NOM_USUEL": "MAS-D'ORCIERES LE MAZEL", "LAT": 44.478333, "LON": 3.706667, "ALTI": 1080, "MIN_DATE": "1926-01-01", "MAX_DATE": "1957-02-28" }, "geometry": { "type": "Point", "coordinates": [ 3.706667, 44.478333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48094001, "NOM_USUEL": "LE MASSEGROS", "LAT": 44.295667, "LON": 3.165667, "ALTI": 890, "MIN_DATE": "1871-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.165667, 44.295667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48095001, "NOM_USUEL": "MENDE", "LAT": 44.516667, "LON": 3.5, "ALTI": 712, "MIN_DATE": "1874-01-01", "MAX_DATE": "1987-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.5, 44.516667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48095002, "NOM_USUEL": "MENDE ECOLE NORMALE", "LAT": 44.518333, "LON": 3.498333, "ALTI": 731, "MIN_DATE": "1865-10-01", "MAX_DATE": "1933-06-30" }, "geometry": { "type": "Point", "coordinates": [ 3.498333, 44.518333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48095003, "NOM_USUEL": "MENDE", "LAT": 44.518333, "LON": 3.498333, "ALTI": 709, "MIN_DATE": "1880-04-01", "MAX_DATE": "1882-04-30" }, "geometry": { "type": "Point", "coordinates": [ 3.498333, 44.518333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48096002, "NOM_USUEL": "MEYRUEIS COL DE CROIX DE FER", "LAT": 44.178333, "LON": 3.428333, "ALTI": 1150, "MIN_DATE": "1873-01-01", "MAX_DATE": "1883-02-28" }, "geometry": { "type": "Point", "coordinates": [ 3.428333, 44.178333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48096003, "NOM_USUEL": "MEYRUEIS VALBELLE", "LAT": 44.178333, "LON": 3.428333, "ALTI": 1000, "MIN_DATE": "1905-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.428333, 44.178333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48106001, "NOM_USUEL": "NOALHAC", "LAT": 44.811667, "LON": 3.105, "ALTI": 795, "MIN_DATE": "1880-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.105, 44.811667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48112001, "NOM_USUEL": "PIERREFICHE", "LAT": 44.683333, "LON": 3.733333, "ALTI": 1080, "MIN_DATE": "1947-01-01", "MAX_DATE": "1966-01-31" }, "geometry": { "type": "Point", "coordinates": [ 3.733333, 44.683333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48116001, "NOM_USUEL": "LE PONT-DE-MONTVERT", "LAT": 44.365667, "LON": 3.738333, "ALTI": 875, "MIN_DATE": "1873-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.738333, 44.365667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48116002, "NOM_USUEL": "LE PONT-DE-MONTVERT CHAMPLONG", "LAT": 44.361667, "LON": 3.743333, "ALTI": 1080, "MIN_DATE": "1905-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.743333, 44.361667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48119001, "NOM_USUEL": "PREVENCHERES", "LAT": 44.516667, "LON": 3.916667, "ALTI": 846, "MIN_DATE": "1884-08-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.916667, 44.516667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48127001, "NOM_USUEL": "RIEUTORT", "LAT": 44.633333, "LON": 3.483333, "ALTI": 1130, "MIN_DATE": "1911-01-01", "MAX_DATE": "1970-11-30" }, "geometry": { "type": "Point", "coordinates": [ 3.483333, 44.633333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48127002, "NOM_USUEL": "RIEUTORT-DE-RANDON", "LAT": 44.633333, "LON": 3.478333, "ALTI": 1207, "MIN_DATE": "1884-07-11", "MAX_DATE": "1908-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.478333, 44.633333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48130001, "NOM_USUEL": "ROUSSES MASSEVAQUES", "LAT": 44.203333, "LON": 3.59, "ALTI": 1000, "MIN_DATE": "1883-01-01", "MAX_DATE": "1890-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.59, 44.203333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48131001, "NOM_USUEL": "LE ROZIER AGGLOMERATION", "LAT": 44.191, "LON": 3.207, "ALTI": 405, "MIN_DATE": "1884-06-01", "MAX_DATE": "1890-08-24" }, "geometry": { "type": "Point", "coordinates": [ 3.207, 44.191 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48136001, "NOM_USUEL": "SAINT-ANDRE-DE-LANCIZE", "LAT": 44.258333, "LON": 3.81, "ALTI": 690, "MIN_DATE": "1884-06-01", "MAX_DATE": "1890-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.81, 44.258333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48139001, "NOM_USUEL": "SAINT-BONNET-DE-MONTAUROUX", "LAT": 44.815, "LON": 3.718333, "ALTI": 746, "MIN_DATE": "1884-07-11", "MAX_DATE": "1890-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.718333, 44.815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48140001, "NOM_USUEL": "ST-CHELY", "LAT": 44.8, "LON": 3.283333, "ALTI": 1000, "MIN_DATE": "1866-04-01", "MAX_DATE": "1988-03-31" }, "geometry": { "type": "Point", "coordinates": [ 3.283333, 44.8 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48141001, "NOM_USUEL": "MAS-SAINT-CHELY CARNAC", "LAT": 44.286833, "LON": 3.364833, "ALTI": 838, "MIN_DATE": "1944-01-01", "MAX_DATE": "1948-11-30" }, "geometry": { "type": "Point", "coordinates": [ 3.364833, 44.286833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48145001, "NOM_USUEL": "ST-DENIS-EN-MARGERIDE", "LAT": 44.736667, "LON": 3.473333, "ALTI": 1172, "MIN_DATE": "1949-10-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.473333, 44.736667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48145003, "NOM_USUEL": "SAINT-DENIS-EN-MARGERIDE", "LAT": 44.735, "LON": 3.471667, "ALTI": 1422, "MIN_DATE": "1884-06-01", "MAX_DATE": "1891-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.471667, 44.735 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48147001, "NOM_USUEL": "SAINT-ETIENNE-DU-VALDONNEZ-AGG", "LAT": 44.455, "LON": 3.561667, "ALTI": 1050, "MIN_DATE": "1908-01-01", "MAX_DATE": "1913-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.561667, 44.455 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48148001, "NOM_USUEL": "ST-ETIENNE-V.F", "LAT": 44.166667, "LON": 3.85, "ALTI": 250, "MIN_DATE": "1884-09-21", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.85, 44.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48150001, "NOM_USUEL": "SAINT-FLOUR-DE-MERCOIRE BOURG", "LAT": 44.695, "LON": 3.825, "ALTI": 1050, "MIN_DATE": "1947-02-01", "MAX_DATE": "1950-01-31" }, "geometry": { "type": "Point", "coordinates": [ 3.825, 44.695 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48155001, "NOM_USUEL": "SAINT-GERMAIN-DE-CALBERTE", "LAT": 44.216667, "LON": 3.806667, "ALTI": 500, "MIN_DATE": "1871-12-01", "MAX_DATE": "1886-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.806667, 44.216667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48156002, "NOM_USUEL": "ST GERMAIN DU TEIL", "LAT": 44.478, "LON": 3.160667, "ALTI": 775, "MIN_DATE": "1949-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.160667, 44.478 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48161001, "NOM_USUEL": "SAINT-JUERY AGGLOMERATION", "LAT": 44.826667, "LON": 3.086667, "ALTI": 936, "MIN_DATE": "1884-06-01", "MAX_DATE": "1890-08-14" }, "geometry": { "type": "Point", "coordinates": [ 3.086667, 44.826667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48169001, "NOM_USUEL": "SAINT-LEGER-DU-MALZIEU", "LAT": 44.885, "LON": 3.306667, "ALTI": 870, "MIN_DATE": "1873-01-01", "MAX_DATE": "1883-10-31" }, "geometry": { "type": "Point", "coordinates": [ 3.306667, 44.885 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48172001, "NOM_USUEL": "ST-MAURICE", "LAT": 44.316667, "LON": 3.833333, "ALTI": 990, "MIN_DATE": "1945-03-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.833333, 44.316667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48182001, "NOM_USUEL": "ST SAUVEUR", "LAT": 44.703667, "LON": 3.606167, "ALTI": 1300, "MIN_DATE": "1947-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.606167, 44.703667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48194001, "NOM_USUEL": "VIALAS ECOLE", "LAT": 44.333333, "LON": 3.895, "ALTI": 610, "MIN_DATE": "1874-01-01", "MAX_DATE": "1941-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.895, 44.333333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48194003, "NOM_USUEL": "VIALAS MAS DE LA BARQUE", "LAT": 44.333333, "LON": 3.895, "ALTI": 1400, "MIN_DATE": "1905-01-01", "MAX_DATE": "1912-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.895, 44.333333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48198001, "NOM_USUEL": "VILLEFORT", "LAT": 44.441667, "LON": 3.928333, "ALTI": 620, "MIN_DATE": "1871-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.928333, 44.441667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48003001, "NOM_USUEL": "ALLENC LARZALIER", "LAT": 44.566667, "LON": 3.683333, "ALTI": 1200, "MIN_DATE": "1979-01-01", "MAX_DATE": "1983-02-28" }, "geometry": { "type": "Point", "coordinates": [ 3.683333, 44.566667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48004001, "NOM_USUEL": "ALTIER", "LAT": 44.494, "LON": 3.852, "ALTI": 900, "MIN_DATE": "1998-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.852, 44.494 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48020003, "NOM_USUEL": "BASSURELS", "LAT": 44.1965, "LON": 3.630667, "ALTI": 1042, "MIN_DATE": "1985-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.630667, 44.1965 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48027002, "NOM_USUEL": "LE BLEYMARD BOURG", "LAT": 44.504667, "LON": 3.737667, "ALTI": 1199, "MIN_DATE": "1957-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.737667, 44.504667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48027003, "NOM_USUEL": "LE BLEYMARD_SAPC", "LAT": 44.4515, "LON": 3.748167, "ALTI": 1418, "MIN_DATE": "1998-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.748167, 44.4515 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48030001, "NOM_USUEL": "MENDE-BRENOUX", "LAT": 44.506, "LON": 3.527333, "ALTI": 1019, "MIN_DATE": "1974-11-01", "MAX_DATE": "2013-11-18" }, "geometry": { "type": "Point", "coordinates": [ 3.527333, 44.506 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48031001, "NOM_USUEL": "BRION-VIEUX", "LAT": 44.75, "LON": 3.081667, "ALTI": 1130, "MIN_DATE": "1953-10-01", "MAX_DATE": "1986-04-30" }, "geometry": { "type": "Point", "coordinates": [ 3.081667, 44.75 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48031002, "NOM_USUEL": "BRION", "LAT": 44.743, "LON": 3.086167, "ALTI": 1217, "MIN_DATE": "1986-05-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.086167, 44.743 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48032001, "NOM_USUEL": "LE BUISSON LA RECOUZE", "LAT": 44.628333, "LON": 3.233333, "ALTI": 1220, "MIN_DATE": "1968-08-01", "MAX_DATE": "1969-11-30" }, "geometry": { "type": "Point", "coordinates": [ 3.233333, 44.628333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48032002, "NOM_USUEL": "LE BUISSON", "LAT": 44.648333, "LON": 3.221667, "ALTI": 1110, "MIN_DATE": "1991-01-01", "MAX_DATE": "2008-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.221667, 44.648333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48032003, "NOM_USUEL": "LE BUISSON", "LAT": 44.633333, "LON": 3.238167, "ALTI": 1088, "MIN_DATE": "2005-09-15", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.238167, 44.633333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48040001, "NOM_USUEL": "CHASSERADES", "LAT": 44.5375, "LON": 3.834333, "ALTI": 1052, "MIN_DATE": "1971-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.834333, 44.5375 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48040002, "NOM_USUEL": "CHASSERADES", "LAT": 44.538333, "LON": 3.835, "ALTI": 1170, "MIN_DATE": "1959-01-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.835, 44.538333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48045001, "NOM_USUEL": "CHAUDEYRAC", "LAT": 44.665, "LON": 3.76, "ALTI": 1140, "MIN_DATE": "1952-06-14", "MAX_DATE": "2023-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.76, 44.665 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48049001, "NOM_USUEL": "CHIRAC", "LAT": 44.536667, "LON": 3.216667, "ALTI": 1000, "MIN_DATE": "1994-03-19", "MAX_DATE": "2005-09-15" }, "geometry": { "type": "Point", "coordinates": [ 3.216667, 44.536667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48051002, "NOM_USUEL": "LE COLLET-SAUVEPLANE", "LAT": 44.256, "LON": 3.925667, "ALTI": 485, "MIN_DATE": "1990-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.925667, 44.256 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48057001, "NOM_USUEL": "ESTABLES SIGNAL DE RANDON", "LAT": 44.666667, "LON": 3.483333, "ALTI": 1200, "MIN_DATE": "1955-01-01", "MAX_DATE": "1964-06-30" }, "geometry": { "type": "Point", "coordinates": [ 3.483333, 44.666667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48057002, "NOM_USUEL": "ESTABLES", "LAT": 44.656667, "LON": 3.5435, "ALTI": 1552, "MIN_DATE": "2009-09-16", "MAX_DATE": "2022-01-18" }, "geometry": { "type": "Point", "coordinates": [ 3.5435, 44.656667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48060001, "NOM_USUEL": "FAU DE PEYRE", "LAT": 44.763167, "LON": 3.211833, "ALTI": 1163, "MIN_DATE": "1986-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.211833, 44.763167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48064001, "NOM_USUEL": "FOURNELS ECOLE PUBLIQUE", "LAT": 44.816667, "LON": 3.116667, "ALTI": 962, "MIN_DATE": "1951-02-01", "MAX_DATE": "1982-09-30" }, "geometry": { "type": "Point", "coordinates": [ 3.116667, 44.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48065001, "NOM_USUEL": "FRAISSINET-DE-FOURQUES", "LAT": 44.213333, "LON": 3.536667, "ALTI": 1028, "MIN_DATE": "1972-11-01", "MAX_DATE": "1975-12-04" }, "geometry": { "type": "Point", "coordinates": [ 3.536667, 44.213333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48069001, "NOM_USUEL": "GATUZIERES_SAPC", "LAT": 44.195333, "LON": 3.499, "ALTI": 965, "MIN_DATE": "2007-03-06", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.499, 44.195333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48070003, "NOM_USUEL": "GRANDRIEU LA CHAPELLE", "LAT": 44.783333, "LON": 3.633333, "ALTI": 1178, "MIN_DATE": "1986-08-01", "MAX_DATE": "1986-09-30" }, "geometry": { "type": "Point", "coordinates": [ 3.633333, 44.783333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48070004, "NOM_USUEL": "GRANDRIEU", "LAT": 44.780667, "LON": 3.633833, "ALTI": 1163, "MIN_DATE": "1987-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.633833, 44.780667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48079001, "NOM_USUEL": "LAJO", "LAT": 44.833333, "LON": 3.433333, "ALTI": 1225, "MIN_DATE": "1961-12-01", "MAX_DATE": "1974-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.433333, 44.833333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48080002, "NOM_USUEL": "LANGOGNE-CFPPA", "LAT": 44.733333, "LON": 3.858333, "ALTI": 934, "MIN_DATE": "1998-10-01", "MAX_DATE": "2007-09-05" }, "geometry": { "type": "Point", "coordinates": [ 3.858333, 44.733333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48086001, "NOM_USUEL": "LUC", "LAT": 44.65, "LON": 3.883333, "ALTI": 980, "MIN_DATE": "1952-01-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.883333, 44.65 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48090004, "NOM_USUEL": "LE MALZIEU", "LAT": 44.854, "LON": 3.330667, "ALTI": 859, "MIN_DATE": "1999-10-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.330667, 44.854 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48091001, "NOM_USUEL": "MARCHASTEL", "LAT": 44.65, "LON": 3.1, "ALTI": 1207, "MIN_DATE": "1950-03-01", "MAX_DATE": "1977-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.1, 44.65 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48092002, "NOM_USUEL": "MARVEJOLS", "LAT": 44.55, "LON": 3.283333, "ALTI": 630, "MIN_DATE": "1974-01-01", "MAX_DATE": "1977-01-31" }, "geometry": { "type": "Point", "coordinates": [ 3.283333, 44.55 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48095004, "NOM_USUEL": "MENDE-VILLE", "LAT": 44.516833, "LON": 3.489833, "ALTI": 710, "MIN_DATE": "1984-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.489833, 44.516833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48095005, "NOM_USUEL": "MENDE", "LAT": 44.533667, "LON": 3.4545, "ALTI": 932, "MIN_DATE": "1985-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.4545, 44.533667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48096004, "NOM_USUEL": "MEYRUEIS-FREPES", "LAT": 44.206, "LON": 3.455167, "ALTI": 1054, "MIN_DATE": "1979-01-01", "MAX_DATE": "2017-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.455167, 44.206 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48097001, "NOM_USUEL": "MOISSAC-VALLEE-FRANCAISE", "LAT": 44.163333, "LON": 3.781667, "ALTI": 650, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.781667, 44.163333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48103001, "NOM_USUEL": "MONTRODAT", "LAT": 44.545833, "LON": 3.3125, "ALTI": 746, "MIN_DATE": "1982-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.3125, 44.545833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48104002, "NOM_USUEL": "NASBINALS", "LAT": 44.642, "LON": 2.9955, "ALTI": 1284, "MIN_DATE": "1971-09-01", "MAX_DATE": "2019-01-21" }, "geometry": { "type": "Point", "coordinates": [ 2.9955, 44.642 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48105001, "NOM_USUEL": "NAUSSAC", "LAT": 44.748333, "LON": 3.828333, "ALTI": 967, "MIN_DATE": "1999-06-01", "MAX_DATE": "2020-03-01" }, "geometry": { "type": "Point", "coordinates": [ 3.828333, 44.748333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48108001, "NOM_USUEL": "LA PANOUSE_SAPC", "LAT": 44.728667, "LON": 3.589333, "ALTI": 1260, "MIN_DATE": "2007-08-24", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.589333, 44.728667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48110001, "NOM_USUEL": "PAULHAC EN MARGERIDE_SAPC", "LAT": 44.947667, "LON": 3.38, "ALTI": 1170, "MIN_DATE": "1951-11-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.38, 44.947667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48115001, "NOM_USUEL": "POMPIDOU", "LAT": 44.183333, "LON": 3.666667, "ALTI": 750, "MIN_DATE": "1959-09-01", "MAX_DATE": "1966-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.666667, 44.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48126001, "NOM_USUEL": "RIBENNES", "LAT": 44.647667, "LON": 3.419667, "ALTI": 1057, "MIN_DATE": "1954-06-09", "MAX_DATE": "2023-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.419667, 44.647667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48130002, "NOM_USUEL": "ROUSSES_SAPC", "LAT": 44.206833, "LON": 3.5845, "ALTI": 812, "MIN_DATE": "2007-01-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.5845, 44.206833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48132001, "NOM_USUEL": "ST ALBAN SUR LIMAGNOLE", "LAT": 44.784667, "LON": 3.387, "ALTI": 960, "MIN_DATE": "1989-05-01", "MAX_DATE": "2014-07-31" }, "geometry": { "type": "Point", "coordinates": [ 3.387, 44.784667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48140002, "NOM_USUEL": "ST CHELY", "LAT": 44.806667, "LON": 3.3025, "ALTI": 1010, "MIN_DATE": "1980-11-01", "MAX_DATE": "1982-07-31" }, "geometry": { "type": "Point", "coordinates": [ 3.3025, 44.806667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48140003, "NOM_USUEL": "ST CHELY-D APCHER", "LAT": 44.815333, "LON": 3.268667, "ALTI": 1032, "MIN_DATE": "1988-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.268667, 44.815333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48142001, "NOM_USUEL": "STE COLOMBE DE PEYRE", "LAT": 44.6505, "LON": 3.249333, "ALTI": 1122, "MIN_DATE": "2016-12-06", "MAX_DATE": "2016-12-06" }, "geometry": { "type": "Point", "coordinates": [ 3.249333, 44.6505 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48144001, "NOM_USUEL": "SAINTE-CROIX-VALLEE-FRANCAISE", "LAT": 44.18, "LON": 3.741667, "ALTI": 630, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.741667, 44.18 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48145002, "NOM_USUEL": "LES BOUVIERS", "LAT": 44.746667, "LON": 3.521667, "ALTI": 1418, "MIN_DATE": "1998-10-01", "MAX_DATE": "2004-01-31" }, "geometry": { "type": "Point", "coordinates": [ 3.521667, 44.746667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48146001, "NOM_USUEL": "STE ENIMIE-SAUVETERRE", "LAT": 44.408667, "LON": 3.438167, "ALTI": 1018, "MIN_DATE": "1988-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.438167, 44.408667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48146002, "NOM_USUEL": "STE ENIMIE", "LAT": 44.363833, "LON": 3.4125, "ALTI": 480, "MIN_DATE": "1998-09-01", "MAX_DATE": "2017-11-13" }, "geometry": { "type": "Point", "coordinates": [ 3.4125, 44.363833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48148002, "NOM_USUEL": "SAINT-ETIENNE-VALLEE-FRANCAISE", "LAT": 44.166667, "LON": 3.84, "ALTI": 250, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.84, 44.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48148003, "NOM_USUEL": "ST-ETIENNE", "LAT": 44.188333, "LON": 3.83, "ALTI": 285, "MIN_DATE": "1991-01-01", "MAX_DATE": "1997-10-31" }, "geometry": { "type": "Point", "coordinates": [ 3.83, 44.188333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48148004, "NOM_USUEL": "ST-ETIENNE-VALLEE-FRANCAISE", "LAT": 44.165833, "LON": 3.854167, "ALTI": 518, "MIN_DATE": "2013-06-19", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.854167, 44.165833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48154001, "NOM_USUEL": "ST GEORGES DE L", "LAT": 44.366667, "LON": 3.233333, "ALTI": 911, "MIN_DATE": "1990-01-01", "MAX_DATE": "2005-09-15" }, "geometry": { "type": "Point", "coordinates": [ 3.233333, 44.366667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48155002, "NOM_USUEL": "SAINT-GERMAIN-DE-CALBERTE RMC", "LAT": 44.216667, "LON": 3.806667, "ALTI": 520, "MIN_DATE": "1969-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.806667, 44.216667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48160001, "NOM_USUEL": "ST-JEAN-LA-F", "LAT": 44.716667, "LON": 3.7, "ALTI": 1145, "MIN_DATE": "1973-12-01", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.7, 44.716667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48165001, "NOM_USUEL": "ST-LAURENT", "LAT": 44.6, "LON": 3.216667, "ALTI": 1150, "MIN_DATE": "1950-03-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.216667, 44.6 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48167001, "NOM_USUEL": "SAINT-LAURENT-DE-VEYRES ECOLE", "LAT": 44.771667, "LON": 3.131667, "ALTI": 1040, "MIN_DATE": "1982-10-01", "MAX_DATE": "1993-03-31" }, "geometry": { "type": "Point", "coordinates": [ 3.131667, 44.771667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48171001, "NOM_USUEL": "ST MARTIN DE LANSUSCLE", "LAT": 44.207, "LON": 3.7685, "ALTI": 643, "MIN_DATE": "1989-01-01", "MAX_DATE": "2021-01-01" }, "geometry": { "type": "Point", "coordinates": [ 3.7685, 44.207 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48172002, "NOM_USUEL": "SAINT-MAURICE-DE-VENTALON RMC", "LAT": 44.321667, "LON": 3.828333, "ALTI": 1000, "MIN_DATE": "1970-07-01", "MAX_DATE": "1972-02-29" }, "geometry": { "type": "Point", "coordinates": [ 3.828333, 44.321667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48172003, "NOM_USUEL": "ST-MAURICE", "LAT": 44.35, "LON": 3.85, "ALTI": 1294, "MIN_DATE": "1986-08-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.85, 44.35 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48176001, "NOM_USUEL": "ST-PIERRE", "LAT": 44.246667, "LON": 3.3, "ALTI": 860, "MIN_DATE": "1979-01-01", "MAX_DATE": "1987-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.3, 44.246667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48176002, "NOM_USUEL": "ST PIERRE-DES-TRIPIERS", "LAT": 44.2465, "LON": 3.3035, "ALTI": 929, "MIN_DATE": "1987-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.3035, 44.2465 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48180001, "NOM_USUEL": "ST-ROME", "LAT": 44.266667, "LON": 3.216667, "ALTI": 895, "MIN_DATE": "1961-08-01", "MAX_DATE": "1965-11-30" }, "geometry": { "type": "Point", "coordinates": [ 3.216667, 44.266667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48186001, "NOM_USUEL": "LA SALLE PRUNET", "LAT": 44.315667, "LON": 3.650667, "ALTI": 903, "MIN_DATE": "2007-07-25", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.650667, 44.315667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48187001, "NOM_USUEL": "SALCES", "LAT": 44.533333, "LON": 3.166667, "ALTI": 1050, "MIN_DATE": "1954-07-07", "MAX_DATE": "1988-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.166667, 44.533333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48187003, "NOM_USUEL": "LES SALCES-FROMENTAL", "LAT": 44.532667, "LON": 3.155167, "ALTI": 1075, "MIN_DATE": "1989-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 3.155167, 44.532667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48190001, "NOM_USUEL": "TERMES", "LAT": 44.821667, "LON": 3.16, "ALTI": 1090, "MIN_DATE": "1999-06-01", "MAX_DATE": "2001-08-31" }, "geometry": { "type": "Point", "coordinates": [ 3.16, 44.821667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48194002, "NOM_USUEL": "VIALAS", "LAT": 44.333333, "LON": 3.866667, "ALTI": 750, "MIN_DATE": "1973-01-01", "MAX_DATE": "1986-09-30" }, "geometry": { "type": "Point", "coordinates": [ 3.866667, 44.333333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48194004, "NOM_USUEL": "VIALAS SOLEYROLS", "LAT": 44.333333, "LON": 3.895, "ALTI": 610, "MIN_DATE": "1972-03-15", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.895, 44.333333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 48194005, "NOM_USUEL": "VIALAS-LE BOS", "LAT": 44.332, "LON": 3.882833, "ALTI": 625, "MIN_DATE": "1986-10-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 3.882833, 44.332 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85001002, "NOM_USUEL": "L'AIGUILLON-SUR-MER BOURG", "LAT": 46.331667, "LON": -1.301667, "ALTI": 4, "MIN_DATE": "1877-05-01", "MAX_DATE": "1885-09-30" }, "geometry": { "type": "Point", "coordinates": [ -1.301667, 46.331667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85005001, "NOM_USUEL": "ANTIGNY", "LAT": 46.618833, "LON": -0.775333, "ALTI": 75, "MIN_DATE": "1945-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.775333, 46.618833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85047002, "NOM_USUEL": "CHALLANS BOURG", "LAT": 46.846667, "LON": -1.88, "ALTI": 11, "MIN_DATE": "1877-01-01", "MAX_DATE": "1877-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.88, 46.846667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85051001, "NOM_USUEL": "CHANTONNAY", "LAT": 46.693333, "LON": -1.048333, "ALTI": 93, "MIN_DATE": "1877-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.048333, 46.693333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85059001, "NOM_USUEL": "LA CHATAIGNERAIE GENDARMERIE", "LAT": 46.65, "LON": -0.741667, "ALTI": 182, "MIN_DATE": "1931-01-01", "MAX_DATE": "1940-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.741667, 46.65 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85059002, "NOM_USUEL": "LA CHATAIGNERAIE", "LAT": 46.65, "LON": -0.741667, "ALTI": 150, "MIN_DATE": "1877-01-01", "MAX_DATE": "1945-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.741667, 46.65 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85092001, "NOM_USUEL": "FONTENAY LE COM", "LAT": 46.468, "LON": -0.782333, "ALTI": 35, "MIN_DATE": "1872-10-01", "MAX_DATE": "2006-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.782333, 46.468 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85092002, "NOM_USUEL": "FONTENAY", "LAT": 46.466667, "LON": -0.813333, "ALTI": 14, "MIN_DATE": "1947-01-01", "MAX_DATE": "1954-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.813333, 46.466667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85092005, "NOM_USUEL": "FONTENAY-LE-COMTE", "LAT": 46.453333, "LON": -0.811667, "ALTI": 6, "MIN_DATE": "1921-01-01", "MAX_DATE": "1952-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.811667, 46.453333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85109001, "NOM_USUEL": "LES HERBIERS", "LAT": 46.855833, "LON": -1.018167, "ALTI": 103, "MIN_DATE": "1877-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.018167, 46.855833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85111001, "NOM_USUEL": "L ILE D ELLE", "LAT": 46.33, "LON": -0.946667, "ALTI": 16, "MIN_DATE": "1923-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.946667, 46.33 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85113001, "NOM_USUEL": "L ILE D YEU", "LAT": 46.693667, "LON": -2.330167, "ALTI": 32, "MIN_DATE": "1948-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -2.330167, 46.693667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85113002, "NOM_USUEL": "L'ILE-D'YEU PHARE", "LAT": 46.705, "LON": -2.331667, "ALTI": 24, "MIN_DATE": "1872-10-01", "MAX_DATE": "1949-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.331667, 46.705 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85113003, "NOM_USUEL": "L'ILE-D'YEU-ONM", "LAT": 46.705, "LON": -2.33, "ALTI": 8, "MIN_DATE": "1884-03-01", "MAX_DATE": "1896-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.33, 46.705 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85128001, "NOM_USUEL": "LUCON", "LAT": 46.45, "LON": -1.15, "ALTI": 9, "MIN_DATE": "1877-01-01", "MAX_DATE": "1962-08-31" }, "geometry": { "type": "Point", "coordinates": [ -1.15, 46.45 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85132001, "NOM_USUEL": "MAILLE BAZOIN", "LAT": 46.341667, "LON": -0.786667, "ALTI": 5, "MIN_DATE": "1881-01-01", "MAX_DATE": "1896-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.786667, 46.341667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85146001, "NOM_USUEL": "MONTAIGU AGGLOMERATION", "LAT": 46.976667, "LON": -1.313333, "ALTI": 52, "MIN_DATE": "1877-01-01", "MAX_DATE": "1923-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.313333, 46.976667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85152001, "NOM_USUEL": "LA MOTHE ACHARD", "LAT": 46.620833, "LON": -1.633167, "ALTI": 58, "MIN_DATE": "1939-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.633167, 46.620833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85163001, "NOM_USUEL": "NOIRMOUTIER EN", "LAT": 47.004667, "LON": -2.257167, "ALTI": 3, "MIN_DATE": "1872-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -2.257167, 47.004667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85182002, "NOM_USUEL": "POUZAUGES", "LAT": 46.786667, "LON": -0.833333, "ALTI": 260, "MIN_DATE": "1946-05-01", "MAX_DATE": "1966-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.833333, 46.786667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85182003, "NOM_USUEL": "POUZAUGES AGGLOMERATION", "LAT": 46.783333, "LON": -0.838333, "ALTI": 190, "MIN_DATE": "1921-01-01", "MAX_DATE": "1946-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.838333, 46.783333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85184001, "NOM_USUEL": "PUY-DE-SERRE AGGLOMERATION", "LAT": 46.561667, "LON": -0.665, "ALTI": 100, "MIN_DATE": "1884-01-01", "MAX_DATE": "1885-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.665, 46.561667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85191005, "NOM_USUEL": "LA ROCHE-SUR-YON ECOLE NORMALE", "LAT": 46.671667, "LON": -1.43, "ALTI": 79, "MIN_DATE": "1872-10-01", "MAX_DATE": "1933-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.43, 46.671667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85194001, "NOM_USUEL": "LES SABLES D OL", "LAT": 46.501667, "LON": -1.793333, "ALTI": 5, "MIN_DATE": "1872-10-01", "MAX_DATE": "2004-05-12" }, "geometry": { "type": "Point", "coordinates": [ -1.793333, 46.501667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85194002, "NOM_USUEL": "LES SABLES-D'OLONNE", "LAT": 46.495, "LON": -1.785, "ALTI": 8, "MIN_DATE": "1923-01-01", "MAX_DATE": "1941-08-31" }, "geometry": { "type": "Point", "coordinates": [ -1.785, 46.495 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85216001, "NOM_USUEL": "SAINTE GEMME LA PLAINE_SAPC", "LAT": 46.440167, "LON": -1.121333, "ALTI": 3, "MIN_DATE": "1949-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.121333, 46.440167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85217001, "NOM_USUEL": "SAINT GEORGES D", "LAT": 46.95, "LON": -1.295, "ALTI": 48, "MIN_DATE": "1931-01-01", "MAX_DATE": "2002-02-28" }, "geometry": { "type": "Point", "coordinates": [ -1.295, 46.95 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85222001, "NOM_USUEL": "SAINT GILLES CR", "LAT": 46.691, "LON": -1.913333, "ALTI": 17, "MIN_DATE": "1872-10-01", "MAX_DATE": "2016-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.913333, 46.691 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85265001, "NOM_USUEL": "SAINT-PIERRE-LE-VIEUX", "LAT": 46.385, "LON": -0.748333, "ALTI": 10, "MIN_DATE": "1933-10-01", "MAX_DATE": "1938-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.748333, 46.385 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85293001, "NOM_USUEL": "TIFFAUGES AGGLOMERATION", "LAT": 47.011667, "LON": -1.111667, "ALTI": 85, "MIN_DATE": "1884-03-01", "MAX_DATE": "1893-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.111667, 47.011667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85306001, "NOM_USUEL": "XANTON-CHASSENON AGGLOMERATION", "LAT": 46.45, "LON": -0.695, "ALTI": 25, "MIN_DATE": "1877-01-01", "MAX_DATE": "1886-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.695, 46.45 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85307001, "NOM_USUEL": "FAUTE", "LAT": 46.316667, "LON": -1.316667, "ALTI": 3, "MIN_DATE": "1941-02-01", "MAX_DATE": "1967-05-31" }, "geometry": { "type": "Point", "coordinates": [ -1.316667, 46.316667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85004001, "NOM_USUEL": "ANGLES", "LAT": 46.4105, "LON": -1.402333, "ALTI": 10, "MIN_DATE": "1974-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.402333, 46.4105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85018001, "NOM_USUEL": "BEAUVOIR SUR MER", "LAT": 46.910667, "LON": -2.0425, "ALTI": 10, "MIN_DATE": "1967-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.0425, 46.910667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85023001, "NOM_USUEL": "BESSAY", "LAT": 46.533333, "LON": -1.173333, "ALTI": 9, "MIN_DATE": "1950-07-01", "MAX_DATE": "1995-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.173333, 46.533333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85029001, "NOM_USUEL": "BOUIN", "LAT": 46.977667, "LON": -1.991, "ALTI": 3, "MIN_DATE": "1967-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.991, 46.977667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85047001, "NOM_USUEL": "CHALLANS", "LAT": 46.846667, "LON": -1.868333, "ALTI": 11, "MIN_DATE": "1951-01-01", "MAX_DATE": "2002-03-31" }, "geometry": { "type": "Point", "coordinates": [ -1.868333, 46.846667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85059003, "NOM_USUEL": "CHATAIGNERAIE", "LAT": 46.6455, "LON": -0.742, "ALTI": 136, "MIN_DATE": "1988-03-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.742, 46.6455 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85060001, "NOM_USUEL": "CHATEAU-D'OLONNE AERODROME", "LAT": 46.505, "LON": -1.735, "ALTI": 34, "MIN_DATE": "1972-10-01", "MAX_DATE": "1972-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.735, 46.505 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85060002, "NOM_USUEL": "CHATEAU-D'OLONNE", "LAT": 46.477167, "LON": -1.725833, "ALTI": 27, "MIN_DATE": "2004-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.725833, 46.477167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85061001, "NOM_USUEL": "CHATEAU-GUIBERT", "LAT": 46.566667, "LON": -1.271667, "ALTI": 50, "MIN_DATE": "1996-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.271667, 46.566667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85064001, "NOM_USUEL": "CHAUCHE", "LAT": 46.816667, "LON": -1.266667, "ALTI": 68, "MIN_DATE": "1951-04-01", "MAX_DATE": "1972-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.266667, 46.816667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85087001, "NOM_USUEL": "FAYMOREAU", "LAT": 46.536667, "LON": -0.628333, "ALTI": 87, "MIN_DATE": "1956-02-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.628333, 46.536667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85092004, "NOM_USUEL": "FONTENAY", "LAT": 46.448167, "LON": -0.779833, "ALTI": 20, "MIN_DATE": "1992-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.779833, 46.448167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85094001, "NOM_USUEL": "FOUSSAIS", "LAT": 46.516667, "LON": -0.666667, "ALTI": 115, "MIN_DATE": "1962-08-01", "MAX_DATE": "1976-02-29" }, "geometry": { "type": "Point", "coordinates": [ -0.666667, 46.516667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85094003, "NOM_USUEL": "FOUSSAIS PAYRE", "LAT": 46.538333, "LON": -0.656667, "ALTI": 100, "MIN_DATE": "1992-01-01", "MAX_DATE": "2015-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.656667, 46.538333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85097001, "NOM_USUEL": "LA-GAUBRETIERE_SAPC", "LAT": 46.925167, "LON": -1.023833, "ALTI": 190, "MIN_DATE": "2017-05-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.023833, 46.925167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85104001, "NOM_USUEL": "GRUES", "LAT": 46.350167, "LON": -1.334833, "ALTI": 2, "MIN_DATE": "2012-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.334833, 46.350167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85106001, "NOM_USUEL": "LA GUERINIERE", "LAT": 46.964167, "LON": -2.248833, "ALTI": 2, "MIN_DATE": "1978-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.248833, 46.964167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85107001, "NOM_USUEL": "LA GUYONNIERE", "LAT": 46.9755, "LON": -1.237, "ALTI": 69, "MIN_DATE": "2002-03-01", "MAX_DATE": "2020-10-31" }, "geometry": { "type": "Point", "coordinates": [ -1.237, 46.9755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85119001, "NOM_USUEL": "LANDES-GENUSSON", "LAT": 46.968333, "LON": -1.1255, "ALTI": 100, "MIN_DATE": "1992-04-01", "MAX_DATE": "2017-06-09" }, "geometry": { "type": "Point", "coordinates": [ -1.1255, 46.968333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85147001, "NOM_USUEL": "MONTOURNAIS", "LAT": 46.733333, "LON": -0.75, "ALTI": 160, "MIN_DATE": "1962-09-01", "MAX_DATE": "1966-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.75, 46.733333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85153001, "NOM_USUEL": "MOUCHAMPS", "LAT": 46.767667, "LON": -1.055333, "ALTI": 77, "MIN_DATE": "2011-02-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.055333, 46.767667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85153002, "NOM_USUEL": "MOUCHAMPS_SAPC", "LAT": 46.768333, "LON": -1.053333, "ALTI": 82, "MIN_DATE": "2013-09-12", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.053333, 46.768333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85163002, "NOM_USUEL": "NOIRM LE PILIE", "LAT": 47.033333, "LON": -2.35, "ALTI": 6, "MIN_DATE": "1975-10-01", "MAX_DATE": "1996-03-31" }, "geometry": { "type": "Point", "coordinates": [ -2.35, 47.033333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85166001, "NOM_USUEL": "OLONNE", "LAT": 46.533333, "LON": -1.766667, "ALTI": 5, "MIN_DATE": "1956-12-01", "MAX_DATE": "1964-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.766667, 46.533333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85169002, "NOM_USUEL": "PALLUAU", "LAT": 46.808, "LON": -1.597667, "ALTI": 51, "MIN_DATE": "1950-08-16", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.597667, 46.808 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85172001, "NOM_USUEL": "LE PERRIER", "LAT": 46.8265, "LON": -1.999833, "ALTI": 2, "MIN_DATE": "1990-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.999833, 46.8265 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85182004, "NOM_USUEL": "POUZAUGES SA", "LAT": 46.766, "LON": -0.830833, "ALTI": 153, "MIN_DATE": "1966-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.830833, 46.766 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85190001, "NOM_USUEL": "ROCHESERVIERE", "LAT": 46.956667, "LON": -1.482667, "ALTI": 43, "MIN_DATE": "1951-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.482667, 46.956667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85191001, "NOM_USUEL": "ROCHE", "LAT": 46.666667, "LON": -1.416667, "ALTI": 65, "MIN_DATE": "1963-02-01", "MAX_DATE": "1978-06-30" }, "geometry": { "type": "Point", "coordinates": [ -1.416667, 46.666667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85191002, "NOM_USUEL": "LA ROCHE SUR YO", "LAT": 46.666667, "LON": -1.383333, "ALTI": 81, "MIN_DATE": "1978-07-01", "MAX_DATE": "1988-03-31" }, "geometry": { "type": "Point", "coordinates": [ -1.383333, 46.666667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85191003, "NOM_USUEL": "LA ROCHE SUR YON", "LAT": 46.705, "LON": -1.381833, "ALTI": 88, "MIN_DATE": "1984-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.381833, 46.705 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85204001, "NOM_USUEL": "ST CHRISTOPHE", "LAT": 46.8295, "LON": -1.752333, "ALTI": 62, "MIN_DATE": "2002-04-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.752333, 46.8295 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85215001, "NOM_USUEL": "SAINT FULGENT", "LAT": 46.854667, "LON": -1.189, "ALTI": 82, "MIN_DATE": "1973-01-01", "MAX_DATE": "2017-09-30" }, "geometry": { "type": "Point", "coordinates": [ -1.189, 46.854667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85215002, "NOM_USUEL": "ST-FULGENT_SAPC", "LAT": 46.848, "LON": -1.184167, "ALTI": 62, "MIN_DATE": "2007-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.184167, 46.848 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 85234001, "NOM_USUEL": "ST JEAN DE MONT", "LAT": 46.791667, "LON": -2.042167, "ALTI": 3, "MIN_DATE": "1967-05-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.042167, 46.791667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14016001, "NOM_USUEL": "ANNEBAULT", "LAT": 49.253333, "LON": 0.058333, "ALTI": 138, "MIN_DATE": "1878-01-01", "MAX_DATE": "1954-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.058333, 49.253333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14020001, "NOM_USUEL": "ARGENCES", "LAT": 49.126667, "LON": -0.163333, "ALTI": 15, "MIN_DATE": "1895-11-01", "MAX_DATE": "1944-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.163333, 49.126667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14027001, "NOM_USUEL": "AUNAY-SUR-ODON AGGLOMERATION", "LAT": 49.02, "LON": -0.631667, "ALTI": 142, "MIN_DATE": "1878-01-01", "MAX_DATE": "1879-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.631667, 49.02 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14035001, "NOM_USUEL": "BALLEROY FORET", "LAT": 49.18, "LON": -0.835, "ALTI": 100, "MIN_DATE": "1937-01-01", "MAX_DATE": "1940-09-30" }, "geometry": { "type": "Point", "coordinates": [ -0.835, 49.18 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14047001, "NOM_USUEL": "BAYEUX", "LAT": 49.275, "LON": -0.703333, "ALTI": 50, "MIN_DATE": "1895-06-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.703333, 49.275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14061001, "NOM_USUEL": "LE BENY-BOCAGE AGGLOMERATION", "LAT": 48.938333, "LON": -0.838333, "ALTI": 204, "MIN_DATE": "1878-01-01", "MAX_DATE": "1894-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.838333, 48.938333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14063001, "NOM_USUEL": "BERNESQ BOURG", "LAT": 49.273333, "LON": -0.941667, "ALTI": 63, "MIN_DATE": "1923-04-01", "MAX_DATE": "1933-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.941667, 49.273333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14096001, "NOM_USUEL": "BREMOY", "LAT": 48.991167, "LON": -0.780833, "ALTI": 240, "MIN_DATE": "1888-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.780833, 48.991167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14098001, "NOM_USUEL": "BRETTEVILLE-L'ORGUEILLEUSE", "LAT": 49.21, "LON": -0.51, "ALTI": 64, "MIN_DATE": "1921-01-01", "MAX_DATE": "1922-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.51, 49.21 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14118001, "NOM_USUEL": "CAEN LA MALADRERIE", "LAT": 49.183333, "LON": -0.36, "ALTI": 40, "MIN_DATE": "1926-05-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.36, 49.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14118003, "NOM_USUEL": "CAEN", "LAT": 49.183333, "LON": -0.36, "ALTI": 24, "MIN_DATE": "1866-07-01", "MAX_DATE": "1939-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.36, 49.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14118004, "NOM_USUEL": "CAEN JARDIN DES PLANTES - CMD", "LAT": 49.183333, "LON": -0.36, "ALTI": 12, "MIN_DATE": "1878-01-01", "MAX_DATE": "1929-01-31" }, "geometry": { "type": "Point", "coordinates": [ -0.36, 49.183333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14137001, "NOM_USUEL": "CAEN-CARPIQUET", "LAT": 49.18, "LON": -0.456167, "ALTI": 67, "MIN_DATE": "1944-10-13", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.456167, 49.18 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14143001, "NOM_USUEL": "CAUMONT-L'EVENTE AGGLOMERATION", "LAT": 49.091667, "LON": -0.8, "ALTI": 244, "MIN_DATE": "1878-01-01", "MAX_DATE": "1919-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.8, 49.091667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14150001, "NOM_USUEL": "CESNY-BOIS-HALBOUT ECOLE", "LAT": 48.981667, "LON": -0.393333, "ALTI": 204, "MIN_DATE": "1921-01-01", "MAX_DATE": "1944-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.393333, 48.981667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14174001, "NOM_USUEL": "CONDE-SUR-NOIREAU LE MESNIL", "LAT": 48.853333, "LON": -0.55, "ALTI": 90, "MIN_DATE": "1926-04-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.55, 48.853333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14220001, "NOM_USUEL": "DEAUVILLE", "LAT": 49.355, "LON": 0.071667, "ALTI": 5, "MIN_DATE": "1926-07-01", "MAX_DATE": "1971-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.071667, 49.355 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14228001, "NOM_USUEL": "DOUVRES LA DELI", "LAT": 49.29, "LON": -0.383333, "ALTI": 23, "MIN_DATE": "1921-01-13", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.383333, 49.29 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14277002, "NOM_USUEL": "FONTENAY-LE-MARMION-AGG", "LAT": 49.091667, "LON": -0.348333, "ALTI": 85, "MIN_DATE": "1879-10-01", "MAX_DATE": "1882-10-31" }, "geometry": { "type": "Point", "coordinates": [ -0.348333, 49.091667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14289001, "NOM_USUEL": "FRESNE LA MERE", "LAT": 48.893333, "LON": -0.118333, "ALTI": 95, "MIN_DATE": "1927-12-01", "MAX_DATE": "1962-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.118333, 48.893333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14333001, "NOM_USUEL": "HONFLEUR", "LAT": 49.42, "LON": 0.231667, "ALTI": 10, "MIN_DATE": "1884-03-01", "MAX_DATE": "1963-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.231667, 49.42 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14338001, "NOM_USUEL": "HOULGATE ECOLE", "LAT": 49.303333, "LON": -0.075, "ALTI": 4, "MIN_DATE": "1921-01-01", "MAX_DATE": "1945-09-30" }, "geometry": { "type": "Point", "coordinates": [ -0.075, 49.303333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14342001, "NOM_USUEL": "ISIGNY-SUR-MER AGGLOMERATION", "LAT": 49.316667, "LON": -1.101667, "ALTI": 4, "MIN_DATE": "1878-01-01", "MAX_DATE": "1909-10-31" }, "geometry": { "type": "Point", "coordinates": [ -1.101667, 49.316667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14361001, "NOM_USUEL": "LENAULT BOURG", "LAT": 48.931667, "LON": -0.626667, "ALTI": 242, "MIN_DATE": "1885-10-01", "MAX_DATE": "1887-10-31" }, "geometry": { "type": "Point", "coordinates": [ -0.626667, 48.931667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14366001, "NOM_USUEL": "LISIEUX HOSP", "LAT": 49.145, "LON": 0.226667, "ALTI": 23, "MIN_DATE": "1887-11-01", "MAX_DATE": "1965-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.226667, 49.145 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14366004, "NOM_USUEL": "LISIEUX PHARMACIE LAMBERT", "LAT": 49.143333, "LON": 0.225, "ALTI": 49, "MIN_DATE": "1878-01-01", "MAX_DATE": "1909-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.225, 49.143333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14370001, "NOM_USUEL": "LE MOLAY LITTRY", "LAT": 49.25, "LON": -0.883333, "ALTI": 25, "MIN_DATE": "1933-07-01", "MAX_DATE": "2000-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.883333, 49.25 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14371001, "NOM_USUEL": "LIVAROT AGGLOMERATION", "LAT": 49.005, "LON": 0.15, "ALTI": 100, "MIN_DATE": "1878-01-01", "MAX_DATE": "1880-03-31" }, "geometry": { "type": "Point", "coordinates": [ 0.15, 49.005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14377001, "NOM_USUEL": "LONGUES-SUR-MER", "LAT": 49.335, "LON": -0.695, "ALTI": 66, "MIN_DATE": "1945-09-01", "MAX_DATE": "1970-06-26" }, "geometry": { "type": "Point", "coordinates": [ -0.695, 49.335 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14377002, "NOM_USUEL": "LONGUES-SUR-MER BOURG", "LAT": 49.333333, "LON": -0.69, "ALTI": 66, "MIN_DATE": "1921-01-01", "MAX_DATE": "1927-07-30" }, "geometry": { "type": "Point", "coordinates": [ -0.69, 49.333333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14399001, "NOM_USUEL": "MANNEVILLE-LA-PIPARD", "LAT": 49.258333, "LON": 0.22, "ALTI": 39, "MIN_DATE": "1945-08-01", "MAX_DATE": "1949-01-31" }, "geometry": { "type": "Point", "coordinates": [ 0.22, 49.258333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14431001, "NOM_USUEL": "MEZIDON-CANON AGGLOMERATION", "LAT": 49.078333, "LON": -0.063333, "ALTI": 43, "MIN_DATE": "1878-01-01", "MAX_DATE": "1879-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.063333, 49.078333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14455001, "NOM_USUEL": "MOULINES RESERVOIR DES EAUX", "LAT": 48.99, "LON": -0.336667, "ALTI": 123, "MIN_DATE": "1938-01-01", "MAX_DATE": "1944-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.336667, 48.99 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14488002, "NOM_USUEL": "OUISTREHAM AGGLOMERATION", "LAT": 49.281667, "LON": -0.256667, "ALTI": 4, "MIN_DATE": "1878-01-01", "MAX_DATE": "1921-01-31" }, "geometry": { "type": "Point", "coordinates": [ -0.256667, 49.281667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14501001, "NOM_USUEL": "PIERREFITTE-EN-CINGLAIS", "LAT": 48.903333, "LON": -0.386667, "ALTI": 235, "MIN_DATE": "1878-01-01", "MAX_DATE": "1900-12-30" }, "geometry": { "type": "Point", "coordinates": [ -0.386667, 48.903333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14514001, "NOM_USUEL": "PONT-L'EVEQUE AGGLOMERATION", "LAT": 49.281667, "LON": 0.181667, "ALTI": 13, "MIN_DATE": "1878-01-01", "MAX_DATE": "1887-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.181667, 49.281667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14544001, "NOM_USUEL": "ROUCAMPS AGGLOMERATION", "LAT": 48.99, "LON": -0.62, "ALTI": 275, "MIN_DATE": "1878-01-01", "MAX_DATE": "1887-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.62, 48.99 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14577001, "NOM_USUEL": "SAINT-GABRIEL-BRECY LE PRIEURE", "LAT": 49.275, "LON": -0.563333, "ALTI": 50, "MIN_DATE": "1949-09-01", "MAX_DATE": "1971-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.563333, 49.275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14578001, "NOM_USUEL": "ST GATIEN DES B", "LAT": 49.3645, "LON": 0.167, "ALTI": 139, "MIN_DATE": "1932-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.167, 49.3645 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14578002, "NOM_USUEL": "SAINT-GATIEN-DES-BOIS", "LAT": 49.346667, "LON": 0.186667, "ALTI": 151, "MIN_DATE": "1878-01-01", "MAX_DATE": "1879-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.186667, 49.346667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14579001, "NOM_USUEL": "SAINT-GEORGES-D'AUNAY", "LAT": 49.035, "LON": -0.68, "ALTI": 170, "MIN_DATE": "1949-08-18", "MAX_DATE": "1957-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.68, 49.035 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14584003, "NOM_USUEL": "ST GERMAIN DE TALLEVENDE", "LAT": 48.8005, "LON": -0.902167, "ALTI": 190, "MIN_DATE": "1894-12-01", "MAX_DATE": "1924-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.902167, 48.8005 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14592001, "NOM_USUEL": "STE HONORINE", "LAT": 49.076667, "LON": -0.491667, "ALTI": 116, "MIN_DATE": "1872-02-01", "MAX_DATE": "1957-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.491667, 49.076667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14597001, "NOM_USUEL": "ST JEAN LE BLAN", "LAT": 48.936667, "LON": -0.651667, "ALTI": 232, "MIN_DATE": "1927-05-01", "MAX_DATE": "1953-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.651667, 48.936667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14624003, "NOM_USUEL": "L'OUDON AGG", "LAT": 48.953333, "LON": 0.081667, "ALTI": 200, "MIN_DATE": "1878-01-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.081667, 48.953333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14639001, "NOM_USUEL": "SAINT-OUEN-LE-PIN", "LAT": 49.146667, "LON": 0.108333, "ALTI": 160, "MIN_DATE": "1879-01-01", "MAX_DATE": "1896-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.108333, 49.146667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14658001, "NOM_USUEL": "SAINT-SEVER-CALVADOS", "LAT": 48.84, "LON": -1.046667, "ALTI": 215, "MIN_DATE": "1947-05-01", "MAX_DATE": "1963-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.046667, 48.84 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14658003, "NOM_USUEL": "ST SEV NOUE", "LAT": 48.841667, "LON": -1.048333, "ALTI": 344, "MIN_DATE": "1931-02-01", "MAX_DATE": "1945-11-20" }, "geometry": { "type": "Point", "coordinates": [ -1.048333, 48.841667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14658004, "NOM_USUEL": "SAINT-SEVER-CALVADOS-AGG", "LAT": 48.84, "LON": -1.046667, "ALTI": 210, "MIN_DATE": "1878-01-01", "MAX_DATE": "1914-08-31" }, "geometry": { "type": "Point", "coordinates": [ -1.046667, 48.84 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14689001, "NOM_USUEL": "THURY-HARCOURT CAMPING", "LAT": 48.985, "LON": -0.475, "ALTI": 63, "MIN_DATE": "1926-08-01", "MAX_DATE": "1965-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.475, 48.985 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14689003, "NOM_USUEL": "THURY-HARCOURT AGGLOMERATION", "LAT": 48.985, "LON": -0.475, "ALTI": 75, "MIN_DATE": "1878-01-01", "MAX_DATE": "1879-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.475, 48.985 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14692001, "NOM_USUEL": "TILLY-SUR-SEULLES", "LAT": 49.175, "LON": -0.625, "ALTI": 133, "MIN_DATE": "1878-01-01", "MAX_DATE": "1880-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.625, 49.175 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14696001, "NOM_USUEL": "TORTISAMBERT ECOLE", "LAT": 48.965, "LON": 0.113333, "ALTI": 159, "MIN_DATE": "1934-01-01", "MAX_DATE": "1940-04-30" }, "geometry": { "type": "Point", "coordinates": [ 0.113333, 48.965 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14711001, "NOM_USUEL": "TREVIERES AGGLOMERATION", "LAT": 49.306667, "LON": -0.905, "ALTI": 7, "MIN_DATE": "1879-01-01", "MAX_DATE": "1926-02-28" }, "geometry": { "type": "Point", "coordinates": [ -0.905, 49.306667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14715001, "NOM_USUEL": "TROUVILLE-SUR-MER", "LAT": 49.365, "LON": 0.085, "ALTI": 4, "MIN_DATE": "1878-01-01", "MAX_DATE": "1925-11-30" }, "geometry": { "type": "Point", "coordinates": [ 0.085, 49.365 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14715002, "NOM_USUEL": "SEMAPHORE DE VILLERVILLE", "LAT": 49.386167, "LON": 0.108, "ALTI": 113, "MIN_DATE": "1932-07-01", "MAX_DATE": "1958-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.108, 49.386167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14739001, "NOM_USUEL": "VER-SUR-MER PHARE", "LAT": 49.336667, "LON": -0.525, "ALTI": 29, "MIN_DATE": "1878-01-01", "MAX_DATE": "1918-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.525, 49.336667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14752001, "NOM_USUEL": "VILLERS-BOCAGE BOURG", "LAT": 49.078333, "LON": -0.653333, "ALTI": 150, "MIN_DATE": "1926-07-19", "MAX_DATE": "1931-09-30" }, "geometry": { "type": "Point", "coordinates": [ -0.653333, 49.078333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14754001, "NOM_USUEL": "VILLERS-SUR-MER", "LAT": 49.321667, "LON": -0.005, "ALTI": 3, "MIN_DATE": "1942-12-01", "MAX_DATE": "1943-03-31" }, "geometry": { "type": "Point", "coordinates": [ -0.005, 49.321667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14754002, "NOM_USUEL": "VILLERS-SUR-MER VILLA DIANA", "LAT": 49.321667, "LON": -0.005, "ALTI": 50, "MIN_DATE": "1933-08-01", "MAX_DATE": "1942-02-28" }, "geometry": { "type": "Point", "coordinates": [ -0.005, 49.321667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14762002, "NOM_USUEL": "VIRE-FOYER DU PROGRES AGRICOLE", "LAT": 48.843333, "LON": -0.885, "ALTI": 192, "MIN_DATE": "1896-01-01", "MAX_DATE": "1963-09-30" }, "geometry": { "type": "Point", "coordinates": [ -0.885, 48.843333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14762003, "NOM_USUEL": "VIRE_SAINT-GERVAIS", "LAT": 48.843333, "LON": -0.885, "ALTI": 190, "MIN_DATE": "1921-01-01", "MAX_DATE": "1924-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.885, 48.843333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14020002, "NOM_USUEL": "ARGENCES", "LAT": 49.140333, "LON": -0.155, "ALTI": 53, "MIN_DATE": "1997-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.155, 49.140333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14047002, "NOM_USUEL": "BAYEUX", "LAT": 49.274833, "LON": -0.712333, "ALTI": 60, "MIN_DATE": "2013-09-09", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.712333, 49.274833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14055001, "NOM_USUEL": "BEAUMONT", "LAT": 49.275, "LON": 0.091667, "ALTI": 109, "MIN_DATE": "1972-05-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.091667, 49.275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14055002, "NOM_USUEL": "BEAUMONT EN A.", "LAT": 49.256167, "LON": 0.090833, "ALTI": 140, "MIN_DATE": "1997-04-01", "MAX_DATE": "2012-10-22" }, "geometry": { "type": "Point", "coordinates": [ 0.090833, 49.256167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14066001, "NOM_USUEL": "BERNIERES", "LAT": 49.334, "LON": -0.430667, "ALTI": 2, "MIN_DATE": "2001-08-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.430667, 49.334 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14126001, "NOM_USUEL": "CAMBREMER", "LAT": 49.1455, "LON": 0.041833, "ALTI": 125, "MIN_DATE": "2001-05-01", "MAX_DATE": "2019-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.041833, 49.1455 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14129001, "NOM_USUEL": "CAMPEAUX LA LANDE", "LAT": 48.953333, "LON": -0.93, "ALTI": 160, "MIN_DATE": "1967-01-01", "MAX_DATE": "1968-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.93, 48.953333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14143002, "NOM_USUEL": "CAUMONT L EVENT", "LAT": 49.083333, "LON": -0.8, "ALTI": 240, "MIN_DATE": "1971-10-21", "MAX_DATE": "1995-07-31" }, "geometry": { "type": "Point", "coordinates": [ -0.8, 49.083333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14147001, "NOM_USUEL": "CERNAY", "LAT": 49.020333, "LON": 0.323333, "ALTI": 182, "MIN_DATE": "1970-07-22", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.323333, 49.020333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14216001, "NOM_USUEL": "DAMBLAINVILLE", "LAT": 48.928, "LON": -0.148667, "ALTI": 155, "MIN_DATE": "1997-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.148667, 48.928 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14220002, "NOM_USUEL": "DEAUVILLE HIPPO", "LAT": 49.352833, "LON": 0.073333, "ALTI": 2, "MIN_DATE": "1992-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.073333, 49.352833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14226001, "NOM_USUEL": "DONNAY", "LAT": 48.955, "LON": -0.416667, "ALTI": 225, "MIN_DATE": "1965-08-01", "MAX_DATE": "1988-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.416667, 48.955 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14229001, "NOM_USUEL": "DOZULE", "LAT": 49.231667, "LON": -0.0475, "ALTI": 29, "MIN_DATE": "1967-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.0475, 49.231667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14239001, "NOM_USUEL": "ENGLESQUEVILLE", "LAT": 49.3875, "LON": -0.956667, "ALTI": 38, "MIN_DATE": "1958-02-11", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.956667, 49.3875 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14258002, "NOM_USUEL": "FALAISE", "LAT": 48.89, "LON": -0.203333, "ALTI": 158, "MIN_DATE": "1971-10-21", "MAX_DATE": "1998-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.203333, 48.89 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14277001, "NOM_USUEL": "FONTENAY-LE-MARMION", "LAT": 49.091667, "LON": -0.348333, "ALTI": 85, "MIN_DATE": "1965-08-01", "MAX_DATE": "1971-11-30" }, "geometry": { "type": "Point", "coordinates": [ -0.348333, 49.091667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14277003, "NOM_USUEL": "FONTENAY LE MAR", "LAT": 49.088333, "LON": -0.352333, "ALTI": 58, "MIN_DATE": "1989-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.352333, 49.088333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14289002, "NOM_USUEL": "FRESNE LA MERE", "LAT": 48.896667, "LON": -0.115, "ALTI": 74, "MIN_DATE": "1971-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.115, 48.896667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14291001, "NOM_USUEL": "FRESNEY LE VX", "LAT": 49.008333, "LON": -0.383333, "ALTI": 176, "MIN_DATE": "1970-07-01", "MAX_DATE": "1992-12-10" }, "geometry": { "type": "Point", "coordinates": [ -0.383333, 49.008333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14291002, "NOM_USUEL": "FRESNEY LE VIEU", "LAT": 49.011667, "LON": -0.379333, "ALTI": 175, "MIN_DATE": "1988-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.379333, 49.011667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14296001, "NOM_USUEL": "LEGAST_SAPC", "LAT": 48.794667, "LON": -1.037167, "ALTI": 336, "MIN_DATE": "1997-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.037167, 48.794667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14302001, "NOM_USUEL": "GLANVILLE", "LAT": 49.285, "LON": 0.083333, "ALTI": 130, "MIN_DATE": "1970-07-01", "MAX_DATE": "1972-05-06" }, "geometry": { "type": "Point", "coordinates": [ 0.083333, 49.285 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14327001, "NOM_USUEL": "HEROUVILLE-SAINT-CLAIR", "LAT": 49.205, "LON": -0.318333, "ALTI": 20, "MIN_DATE": "1973-01-01", "MAX_DATE": "1973-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.318333, 49.205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14334001, "NOM_USUEL": "L'HOTELLERIE BOURG", "LAT": 49.138333, "LON": 0.405, "ALTI": 130, "MIN_DATE": "1970-07-22", "MAX_DATE": "1973-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.405, 49.138333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14334002, "NOM_USUEL": "L'HOTELLERIE", "LAT": 49.1385, "LON": 0.404167, "ALTI": 161, "MIN_DATE": "2013-10-21", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.404167, 49.1385 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14336001, "NOM_USUEL": "HOTTOT-LES-BAGUES LA RIVIERE", "LAT": 49.151667, "LON": -0.646667, "ALTI": 70, "MIN_DATE": "1969-07-01", "MAX_DATE": "1971-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.646667, 49.151667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14352001, "NOM_USUEL": "LANDELLES-ET-COUPIGNY", "LAT": 48.886667, "LON": -0.995, "ALTI": 100, "MIN_DATE": "1966-04-01", "MAX_DATE": "1973-02-28" }, "geometry": { "type": "Point", "coordinates": [ -0.995, 48.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14357001, "NOM_USUEL": "LASSY", "LAT": 48.913, "LON": -0.671167, "ALTI": 163, "MIN_DATE": "1967-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.671167, 48.913 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14357002, "NOM_USUEL": "LASSY_SAPC", "LAT": 48.9265, "LON": -0.6925, "ALTI": 223, "MIN_DATE": "2008-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.6925, 48.9265 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14362001, "NOM_USUEL": "LESSARD", "LAT": 49.071, "LON": 0.1545, "ALTI": 150, "MIN_DATE": "2001-02-01", "MAX_DATE": "2007-02-28" }, "geometry": { "type": "Point", "coordinates": [ 0.1545, 49.071 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14366002, "NOM_USUEL": "LISIEUX_SAPC", "LAT": 49.165, "LON": 0.227, "ALTI": 62, "MIN_DATE": "1970-07-23", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.227, 49.165 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14369001, "NOM_USUEL": "LITTEAU", "LAT": 49.143333, "LON": -0.911333, "ALTI": 125, "MIN_DATE": "1970-07-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.911333, 49.143333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14372001, "NOM_USUEL": "LIVRY", "LAT": 49.1015, "LON": -0.765167, "ALTI": 184, "MIN_DATE": "1995-09-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.765167, 49.1015 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14384001, "NOM_USUEL": "LUC SUR MER", "LAT": 49.315, "LON": -0.358333, "ALTI": 10, "MIN_DATE": "1997-01-01", "MAX_DATE": "2002-09-30" }, "geometry": { "type": "Point", "coordinates": [ -0.358333, 49.315 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14403001, "NOM_USUEL": "MAROLLES", "LAT": 49.134333, "LON": 0.364833, "ALTI": 155, "MIN_DATE": "1973-03-01", "MAX_DATE": "2013-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.364833, 49.134333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14410001, "NOM_USUEL": "MERY-CORBON ECOLE", "LAT": 49.135, "LON": -0.081667, "ALTI": 12, "MIN_DATE": "1954-01-23", "MAX_DATE": "1956-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.081667, 49.135 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14431002, "NOM_USUEL": "MEZIDON-CANON", "LAT": 49.0885, "LON": -0.077333, "ALTI": 35, "MIN_DATE": "1992-06-10", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.077333, 49.0885 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14446001, "NOM_USUEL": "MONTIGNY", "LAT": 49.045833, "LON": -0.530167, "ALTI": 151, "MIN_DATE": "1970-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.530167, 49.045833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14462001, "NOM_USUEL": "NEUILLYLAFORET", "LAT": 49.27, "LON": -1.101667, "ALTI": 31, "MIN_DATE": "1970-07-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.101667, 49.27 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14478001, "NOM_USUEL": "ORBEC", "LAT": 49.017667, "LON": 0.3685, "ALTI": 170, "MIN_DATE": "1984-06-01", "MAX_DATE": "2010-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.3685, 49.017667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14488001, "NOM_USUEL": "OUISTREHAM", "LAT": 49.266667, "LON": -0.25, "ALTI": 10, "MIN_DATE": "1975-07-01", "MAX_DATE": "2004-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.25, 49.266667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14500001, "NOM_USUEL": "PIERREFITTE EN", "LAT": 49.262333, "LON": 0.203667, "ALTI": 50, "MIN_DATE": "1976-02-01", "MAX_DATE": "2010-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.203667, 49.262333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14501002, "NOM_USUEL": "PIERREFITTE CIN_SAPC", "LAT": 48.891, "LON": -0.385833, "ALTI": 185, "MIN_DATE": "1997-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.385833, 48.891 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14508001, "NOM_USUEL": "PLESSIS GRIMOUL", "LAT": 48.971667, "LON": -0.61, "ALTI": 347, "MIN_DATE": "1970-07-01", "MAX_DATE": "1993-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.61, 48.971667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14515001, "NOM_USUEL": "PORT EN BESSIN", "LAT": 49.349167, "LON": -0.772667, "ALTI": 68, "MIN_DATE": "1984-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.772667, 49.349167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14550001, "NOM_USUEL": "RUMESNIL LE BOCAGE", "LAT": 49.185, "LON": 0.026667, "ALTI": 40, "MIN_DATE": "1971-12-01", "MAX_DATE": "1984-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.026667, 49.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14574001, "NOM_USUEL": "SAINT DESIR DE", "LAT": 49.15, "LON": 0.2, "ALTI": 160, "MIN_DATE": "1973-07-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.2, 49.15 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14575001, "NOM_USUEL": "ST ETIENNE LA T", "LAT": 49.280333, "LON": 0.1025, "ALTI": 60, "MIN_DATE": "1994-01-01", "MAX_DATE": "2007-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.1025, 49.280333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14579002, "NOM_USUEL": "SAINT GEORGES D", "LAT": 49.0345, "LON": -0.686, "ALTI": 185, "MIN_DATE": "1970-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.686, 49.0345 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14584001, "NOM_USUEL": "SAINT GERMAIN D", "LAT": 48.822833, "LON": -0.9035, "ALTI": 183, "MIN_DATE": "1967-12-01", "MAX_DATE": "2013-06-30" }, "geometry": { "type": "Point", "coordinates": [ -0.9035, 48.822833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14588001, "NOM_USUEL": "GERMAIN LANGOT", "LAT": 48.919667, "LON": -0.328, "ALTI": 197, "MIN_DATE": "1970-07-01", "MAX_DATE": "2018-01-31" }, "geometry": { "type": "Point", "coordinates": [ -0.328, 48.919667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14600001, "NOM_USUEL": "SAINT-JULIEN-LE-FAUCON", "LAT": 49.068333, "LON": 0.083333, "ALTI": 60, "MIN_DATE": "1971-10-19", "MAX_DATE": "1979-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.083333, 49.068333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14624001, "NOM_USUEL": "L OUDON LIEURY_SAPC", "LAT": 48.9895, "LON": -0.009167, "ALTI": 52, "MIN_DATE": "1963-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.009167, 48.9895 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14624002, "NOM_USUEL": "L'OUDON", "LAT": 48.913333, "LON": 0.018333, "ALTI": 120, "MIN_DATE": "1971-11-01", "MAX_DATE": "1975-08-31" }, "geometry": { "type": "Point", "coordinates": [ 0.018333, 48.913333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14634001, "NOM_USUEL": "SAINT MICHEL DE", "LAT": 49.006833, "LON": 0.1295, "ALTI": 140, "MIN_DATE": "1983-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 0.1295, 49.006833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14637001, "NOM_USUEL": "ST OUEN DU MESN", "LAT": 49.15, "LON": -0.116667, "ALTI": 40, "MIN_DATE": "1967-05-01", "MAX_DATE": "1998-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.116667, 49.15 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14643001, "NOM_USUEL": "ST PAUL DU VERN", "LAT": 49.2, "LON": -0.75, "ALTI": 110, "MIN_DATE": "1970-07-01", "MAX_DATE": "2000-04-30" }, "geometry": { "type": "Point", "coordinates": [ -0.75, 49.2 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14658002, "NOM_USUEL": "SAINT SEVER", "LAT": 48.841167, "LON": -1.055167, "ALTI": 191, "MIN_DATE": "1971-09-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.055167, 48.841167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14659001, "NOM_USUEL": "ST SYLVAIN_SAPC", "LAT": 49.06, "LON": -0.234333, "ALTI": 62, "MIN_DATE": "1972-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.234333, 49.06 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14659002, "NOM_USUEL": "SAINT SYLVAIN", "LAT": 49.058333, "LON": -0.218333, "ALTI": 50, "MIN_DATE": "1971-10-19", "MAX_DATE": "1994-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.218333, 49.058333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14663001, "NOM_USUEL": "SAINT VIGOR", "LAT": 49.2805, "LON": -0.696333, "ALTI": 33, "MIN_DATE": "1992-01-01", "MAX_DATE": "2013-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.696333, 49.2805 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14665001, "NOM_USUEL": "SALLENELLES", "LAT": 49.264167, "LON": -0.234667, "ALTI": 7, "MIN_DATE": "2004-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.234667, 49.264167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14669001, "NOM_USUEL": "SASSY", "LAT": 48.9855, "LON": -0.136667, "ALTI": 62, "MIN_DATE": "1971-10-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.136667, 48.9855 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14678001, "NOM_USUEL": "SOUMONT-SAINT-QUENTIN", "LAT": 48.978333, "LON": -0.233333, "ALTI": 150, "MIN_DATE": "1971-01-01", "MAX_DATE": "1971-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.233333, 48.978333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14684001, "NOM_USUEL": "TESSEL", "LAT": 49.166667, "LON": -0.566667, "ALTI": 110, "MIN_DATE": "1975-11-01", "MAX_DATE": "1997-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.566667, 49.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14695001, "NOM_USUEL": "TORTEVALQUESNAY", "LAT": 49.1525, "LON": -0.755333, "ALTI": 121, "MIN_DATE": "1970-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.755333, 49.1525 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14727001, "NOM_USUEL": "VAUBADON", "LAT": 49.21, "LON": -0.835333, "ALTI": 105, "MIN_DATE": "2000-05-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.835333, 49.21 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14730001, "NOM_USUEL": "VAUDRY MONTS", "LAT": 48.841667, "LON": -0.853333, "ALTI": 225, "MIN_DATE": "1963-02-01", "MAX_DATE": "1963-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.853333, 48.841667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14743001, "NOM_USUEL": "VICTOT-PONTFOL LA VIGANNERIE", "LAT": 49.165, "LON": -0.018333, "ALTI": 50, "MIN_DATE": "1961-12-01", "MAX_DATE": "1966-08-31" }, "geometry": { "type": "Point", "coordinates": [ -0.018333, 49.165 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14743002, "NOM_USUEL": "VICTOT PONTFOL", "LAT": 49.166667, "LON": -0.033333, "ALTI": 40, "MIN_DATE": "1985-02-01", "MAX_DATE": "1995-10-31" }, "geometry": { "type": "Point", "coordinates": [ -0.033333, 49.166667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14746001, "NOM_USUEL": "VIESSOIX", "LAT": 48.84, "LON": -0.803333, "ALTI": 180, "MIN_DATE": "1971-10-01", "MAX_DATE": "2004-05-31" }, "geometry": { "type": "Point", "coordinates": [ -0.803333, 48.84 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14749001, "NOM_USUEL": "VIEUX-FUME ECOLE", "LAT": 49.056667, "LON": -0.116667, "ALTI": 52, "MIN_DATE": "1950-07-01", "MAX_DATE": "1959-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.116667, 49.056667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14762001, "NOM_USUEL": "VIRE", "LAT": 48.878167, "LON": -0.863833, "ALTI": 103, "MIN_DATE": "1970-07-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ -0.863833, 48.878167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 14762004, "NOM_USUEL": "VIRE HIPPODROME", "LAT": 48.850833, "LON": -0.899, "ALTI": 100, "MIN_DATE": "2003-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -0.899, 48.850833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95018001, "NOM_USUEL": "ARGENTEUIL - BG", "LAT": 48.958333, "LON": 2.238333, "ALTI": 40, "MIN_DATE": "1908-02-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.238333, 48.958333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95023001, "NOM_USUEL": "ARRONVILLE", "LAT": 49.178333, "LON": 2.113333, "ALTI": 80, "MIN_DATE": "1933-05-01", "MAX_DATE": "1934-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.113333, 49.178333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95026001, "NOM_USUEL": "ASNIERES/OISE", "LAT": 49.131667, "LON": 2.356667, "ALTI": 47, "MIN_DATE": "1893-05-01", "MAX_DATE": "1908-04-30" }, "geometry": { "type": "Point", "coordinates": [ 2.356667, 49.131667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95052001, "NOM_USUEL": "BEAUMONT - GEND", "LAT": 49.141667, "LON": 2.291667, "ALTI": 40, "MIN_DATE": "1927-06-01", "MAX_DATE": "1940-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.291667, 49.141667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95052002, "NOM_USUEL": "BEAUMONT - POL", "LAT": 49.141667, "LON": 2.288333, "ALTI": 45, "MIN_DATE": "1928-05-01", "MAX_DATE": "1967-05-31" }, "geometry": { "type": "Point", "coordinates": [ 2.288333, 49.141667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95056001, "NOM_USUEL": "BELLOY", "LAT": 49.088333, "LON": 2.37, "ALTI": 128, "MIN_DATE": "1905-08-01", "MAX_DATE": "1914-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.37, 49.088333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95078001, "NOM_USUEL": "PONTOISE - AERO", "LAT": 49.090333, "LON": 2.0285, "ALTI": 87, "MIN_DATE": "1946-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.0285, 49.090333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95088001, "NOM_USUEL": "LE BOURGET", "LAT": 48.967333, "LON": 2.427667, "ALTI": 49, "MIN_DATE": "1920-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.427667, 48.967333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95091001, "NOM_USUEL": "BOUFFEMONT", "LAT": 49.041667, "LON": 2.298333, "ALTI": 129, "MIN_DATE": "1902-02-01", "MAX_DATE": "1907-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.298333, 49.041667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95142001, "NOM_USUEL": "CHARS", "LAT": 49.158333, "LON": 1.94, "ALTI": 65, "MIN_DATE": "1928-07-01", "MAX_DATE": "1934-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.94, 49.158333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95150001, "NOM_USUEL": "CHAUSSY", "LAT": 49.121667, "LON": 1.691667, "ALTI": 80, "MIN_DATE": "1889-08-01", "MAX_DATE": "1893-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.691667, 49.121667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95166001, "NOM_USUEL": "CLERY-EN-VEXIN", "LAT": 49.126667, "LON": 1.84, "ALTI": 196, "MIN_DATE": "1885-03-01", "MAX_DATE": "1905-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.84, 49.126667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95170001, "NOM_USUEL": "CONDECOURT - BG", "LAT": 49.04, "LON": 1.941667, "ALTI": 40, "MIN_DATE": "1905-03-01", "MAX_DATE": "1920-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.941667, 49.04 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95176001, "NOM_USUEL": "CORMEILLES-EN-P", "LAT": 48.973333, "LON": 2.198333, "ALTI": 140, "MIN_DATE": "1897-02-28", "MAX_DATE": "1908-09-30" }, "geometry": { "type": "Point", "coordinates": [ 2.198333, 48.973333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95183001, "NOM_USUEL": "COURDIMANCHE", "LAT": 49.033333, "LON": 2.001667, "ALTI": 54, "MIN_DATE": "1902-04-01", "MAX_DATE": "1906-10-31" }, "geometry": { "type": "Point", "coordinates": [ 2.001667, 49.033333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95197001, "NOM_USUEL": "DEUIL", "LAT": 48.976667, "LON": 2.326667, "ALTI": 55, "MIN_DATE": "1923-01-01", "MAX_DATE": "1927-11-30" }, "geometry": { "type": "Point", "coordinates": [ 2.326667, 48.976667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95205001, "NOM_USUEL": "ECOUEN", "LAT": 49.018333, "LON": 2.381667, "ALTI": 107, "MIN_DATE": "1897-01-01", "MAX_DATE": "1901-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.381667, 49.018333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95213001, "NOM_USUEL": "EPIAIS", "LAT": 49.121667, "LON": 2.063333, "ALTI": 110, "MIN_DATE": "1930-01-01", "MAX_DATE": "1943-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.063333, 49.121667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95219001, "NOM_USUEL": "ERMONT", "LAT": 48.985, "LON": 2.256667, "ALTI": 58, "MIN_DATE": "1939-01-01", "MAX_DATE": "1967-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.256667, 48.985 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95252001, "NOM_USUEL": "FRANCONVILLE", "LAT": 48.991667, "LON": 2.226667, "ALTI": 50, "MIN_DATE": "1939-01-01", "MAX_DATE": "1939-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.226667, 48.991667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95282001, "NOM_USUEL": "GOUZANGREZ", "LAT": 49.111667, "LON": 1.906667, "ALTI": 110, "MIN_DATE": "1908-03-01", "MAX_DATE": "1911-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.906667, 49.111667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95298001, "NOM_USUEL": "HARAVILLIERS-BG", "LAT": 49.173333, "LON": 2.055, "ALTI": 132, "MIN_DATE": "1904-06-11", "MAX_DATE": "1906-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.055, 49.173333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95313001, "NOM_USUEL": "L'ISLE-ADAM", "LAT": 49.108333, "LON": 2.221667, "ALTI": 77, "MIN_DATE": "1888-01-01", "MAX_DATE": "1914-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.221667, 49.108333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95316002, "NOM_USUEL": "JAGNY - BG", "LAT": 49.076667, "LON": 2.441667, "ALTI": 150, "MIN_DATE": "1902-04-01", "MAX_DATE": "1905-01-31" }, "geometry": { "type": "Point", "coordinates": [ 2.441667, 49.076667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95351001, "NOM_USUEL": "LOUVRES", "LAT": 49.038333, "LON": 2.503333, "ALTI": 80, "MIN_DATE": "1890-02-01", "MAX_DATE": "1911-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.503333, 49.038333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95353001, "NOM_USUEL": "MAFFLIERS", "LAT": 49.076667, "LON": 2.306667, "ALTI": 153, "MIN_DATE": "1930-02-01", "MAX_DATE": "1961-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.306667, 49.076667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95355002, "NOM_USUEL": "MAGNY", "LAT": 49.16, "LON": 1.806667, "ALTI": 75, "MIN_DATE": "1895-12-01", "MAX_DATE": "1909-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.806667, 49.16 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95371001, "NOM_USUEL": "MARLY", "LAT": 49.076667, "LON": 2.498333, "ALTI": 134, "MIN_DATE": "1912-11-01", "MAX_DATE": "1924-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.498333, 49.076667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95422001, "NOM_USUEL": "MONTGEROULT", "LAT": 49.083333, "LON": 2.005, "ALTI": 88, "MIN_DATE": "1898-01-01", "MAX_DATE": "1906-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.005, 49.083333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95424001, "NOM_USUEL": "MONTIGNY - BG", "LAT": 48.998333, "LON": 2.201667, "ALTI": 130, "MIN_DATE": "1937-02-01", "MAX_DATE": "1938-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.201667, 48.998333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95426001, "NOM_USUEL": "MONTLIGNON", "LAT": 49.008333, "LON": 2.283333, "ALTI": 80, "MIN_DATE": "1929-04-01", "MAX_DATE": "1930-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.283333, 49.008333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95427001, "NOM_USUEL": "MONTMAGNY", "LAT": 48.973333, "LON": 2.343333, "ALTI": 70, "MIN_DATE": "1938-05-01", "MAX_DATE": "1938-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.343333, 48.973333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95476001, "NOM_USUEL": "OSNY", "LAT": 49.058333, "LON": 2.056667, "ALTI": 39, "MIN_DATE": "1885-02-01", "MAX_DATE": "1886-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.056667, 49.058333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95500001, "NOM_USUEL": "PONTOISE - EAUX", "LAT": 49.051667, "LON": 2.093333, "ALTI": 50, "MIN_DATE": "1949-10-01", "MAX_DATE": "1986-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.093333, 49.051667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95500002, "NOM_USUEL": "PONTOISE - BG", "LAT": 49.051667, "LON": 2.093333, "ALTI": 48, "MIN_DATE": "1871-12-01", "MAX_DATE": "1926-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.093333, 49.051667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95510001, "NOM_USUEL": "PUISEUX-PONT.", "LAT": 49.056667, "LON": 2.021667, "ALTI": 125, "MIN_DATE": "1917-05-01", "MAX_DATE": "1920-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.021667, 49.056667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95554001, "NOM_USUEL": "ST-GERVAIS", "LAT": 49.168333, "LON": 1.771667, "ALTI": 120, "MIN_DATE": "1943-04-01", "MAX_DATE": "1944-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.771667, 49.168333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95563002, "NOM_USUEL": "ST-LEU - BG", "LAT": 49.013333, "LON": 2.243333, "ALTI": 85, "MIN_DATE": "1907-04-01", "MAX_DATE": "1907-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.243333, 49.013333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95572001, "NOM_USUEL": "ST-OUEN-L'AUM.", "LAT": 49.041667, "LON": 2.111667, "ALTI": 32, "MIN_DATE": "1895-11-11", "MAX_DATE": "1974-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.111667, 49.041667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95585001, "NOM_USUEL": "SARCELLES", "LAT": 49.0, "LON": 2.376667, "ALTI": 69, "MIN_DATE": "1948-10-01", "MAX_DATE": "1967-07-31" }, "geometry": { "type": "Point", "coordinates": [ 2.376667, 49.0 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95625001, "NOM_USUEL": "US", "LAT": 49.101667, "LON": 1.966667, "ALTI": 50, "MIN_DATE": "1930-01-01", "MAX_DATE": "1940-05-31" }, "geometry": { "type": "Point", "coordinates": [ 1.966667, 49.101667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95676001, "NOM_USUEL": "VILLERS", "LAT": 49.088333, "LON": 1.726667, "ALTI": 153, "MIN_DATE": "1894-04-01", "MAX_DATE": "1895-04-15" }, "geometry": { "type": "Point", "coordinates": [ 1.726667, 49.088333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95018002, "NOM_USUEL": "ARGENTEUIL", "LAT": 48.961667, "LON": 2.253333, "ALTI": 73, "MIN_DATE": "1994-02-01", "MAX_DATE": "2007-06-01" }, "geometry": { "type": "Point", "coordinates": [ 2.253333, 48.961667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95052003, "NOM_USUEL": "BEAUMONT/OISE", "LAT": 49.133333, "LON": 2.266667, "ALTI": 57, "MIN_DATE": "1987-05-01", "MAX_DATE": "1996-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.266667, 49.133333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95101001, "NOM_USUEL": "BRAY-ET-LU", "LAT": 49.141667, "LON": 1.668333, "ALTI": 30, "MIN_DATE": "1983-08-01", "MAX_DATE": "2007-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.668333, 49.141667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95119001, "NOM_USUEL": "BUHY", "LAT": 49.194, "LON": 1.6945, "ALTI": 90, "MIN_DATE": "1986-01-01", "MAX_DATE": "2015-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.6945, 49.194 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95127001, "NOM_USUEL": "CERGY", "LAT": 49.033333, "LON": 2.063333, "ALTI": 30, "MIN_DATE": "1986-07-01", "MAX_DATE": "1990-03-31" }, "geometry": { "type": "Point", "coordinates": [ 2.063333, 49.033333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95149001, "NOM_USUEL": "CHAUMONTEL", "LAT": 49.125, "LON": 2.433333, "ALTI": 47, "MIN_DATE": "1971-05-01", "MAX_DATE": "2000-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.433333, 49.125 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95170002, "NOM_USUEL": "CONDECOURT", "LAT": 49.0415, "LON": 1.940833, "ALTI": 61, "MIN_DATE": "1990-11-01", "MAX_DATE": "2011-02-07" }, "geometry": { "type": "Point", "coordinates": [ 1.940833, 49.0415 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95203001, "NOM_USUEL": "EAUBONNE", "LAT": 48.995, "LON": 2.269667, "ALTI": 57, "MIN_DATE": "1972-03-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.269667, 48.995 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95270001, "NOM_USUEL": "GENAINVILLE", "LAT": 49.125, "LON": 1.753333, "ALTI": 105, "MIN_DATE": "1971-11-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.753333, 49.125 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95288001, "NOM_USUEL": "GROSLAY", "LAT": 48.986667, "LON": 2.34, "ALTI": 88, "MIN_DATE": "1993-12-01", "MAX_DATE": "2007-01-22" }, "geometry": { "type": "Point", "coordinates": [ 2.34, 48.986667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95298002, "NOM_USUEL": "HARAVILLIERS", "LAT": 49.173167, "LON": 2.0475, "ALTI": 143, "MIN_DATE": "1990-01-01", "MAX_DATE": "2010-02-02" }, "geometry": { "type": "Point", "coordinates": [ 2.0475, 49.173167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95306001, "NOM_USUEL": "HERBLAY", "LAT": 49.003667, "LON": 2.160667, "ALTI": 75, "MIN_DATE": "1989-01-01", "MAX_DATE": "2014-10-26" }, "geometry": { "type": "Point", "coordinates": [ 2.160667, 49.003667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95323001, "NOM_USUEL": "JOUY-LE-MOUTIER", "LAT": 49.007667, "LON": 2.013833, "ALTI": 127, "MIN_DATE": "2005-01-01", "MAX_DATE": "2011-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.013833, 49.007667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95355001, "NOM_USUEL": "MAGNY-EN-VEXIN", "LAT": 49.161667, "LON": 1.806667, "ALTI": 69, "MIN_DATE": "1965-04-01", "MAX_DATE": "1983-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.806667, 49.161667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95424002, "NOM_USUEL": "MONTIGNY", "LAT": 48.988333, "LON": 2.188333, "ALTI": 115, "MIN_DATE": "1972-04-01", "MAX_DATE": "1975-03-10" }, "geometry": { "type": "Point", "coordinates": [ 2.188333, 48.988333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95483001, "NOM_USUEL": "LE PERCHAY", "LAT": 49.112167, "LON": 1.936167, "ALTI": 98, "MIN_DATE": "1972-03-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.936167, 49.112167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95488001, "NOM_USUEL": "PIERRELAYE", "LAT": 49.018667, "LON": 2.154333, "ALTI": 53, "MIN_DATE": "1970-07-01", "MAX_DATE": "2009-10-21" }, "geometry": { "type": "Point", "coordinates": [ 2.154333, 49.018667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95492001, "NOM_USUEL": "LE PLESSIS GASSOT", "LAT": 49.040333, "LON": 2.406667, "ALTI": 108, "MIN_DATE": "2011-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.406667, 49.040333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95500003, "NOM_USUEL": "PONTOISE -VILLE", "LAT": 49.044667, "LON": 2.084667, "ALTI": 50, "MIN_DATE": "1990-05-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.084667, 49.044667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95509001, "NOM_USUEL": "PUISEUX-EN-F.", "LAT": 49.061667, "LON": 2.503333, "ALTI": 120, "MIN_DATE": "1986-01-01", "MAX_DATE": "1996-06-30" }, "geometry": { "type": "Point", "coordinates": [ 2.503333, 49.061667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95527001, "NOM_USUEL": "ROISSY", "LAT": 49.015167, "LON": 2.534333, "ALTI": 108, "MIN_DATE": "1974-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.534333, 49.015167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95563001, "NOM_USUEL": "ST-LEU", "LAT": 49.013333, "LON": 2.243333, "ALTI": 85, "MIN_DATE": "1956-01-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 2.243333, 49.013333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95580001, "NOM_USUEL": "ST WITZ", "LAT": 49.085667, "LON": 2.550667, "ALTI": 141, "MIN_DATE": "2008-01-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 2.550667, 49.085667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95592001, "NOM_USUEL": "SERAINCOURT", "LAT": 49.036667, "LON": 1.866667, "ALTI": 18, "MIN_DATE": "1951-09-01", "MAX_DATE": "1953-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.866667, 49.036667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95604001, "NOM_USUEL": "SURVILLIERS", "LAT": 49.096667, "LON": 2.541667, "ALTI": 135, "MIN_DATE": "1971-02-23", "MAX_DATE": "2007-02-28" }, "geometry": { "type": "Point", "coordinates": [ 2.541667, 49.096667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95637001, "NOM_USUEL": "VAUREAL", "LAT": 49.033333, "LON": 2.031667, "ALTI": 39, "MIN_DATE": "1953-06-01", "MAX_DATE": "1972-02-29" }, "geometry": { "type": "Point", "coordinates": [ 2.031667, 49.033333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95678001, "NOM_USUEL": "VILLIERS-ADAM", "LAT": 49.061833, "LON": 2.230167, "ALTI": 156, "MIN_DATE": "1988-09-01", "MAX_DATE": "2014-08-27" }, "geometry": { "type": "Point", "coordinates": [ 2.230167, 49.061833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 95690001, "NOM_USUEL": "WY-DIT", "LAT": 49.108167, "LON": 1.830667, "ALTI": 126, "MIN_DATE": "1988-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.830667, 49.108167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44002001, "NOM_USUEL": "AIGREFEUILLE", "LAT": 47.0665, "LON": -1.391833, "ALTI": 35, "MIN_DATE": "1935-12-01", "MAX_DATE": "2017-04-30" }, "geometry": { "type": "Point", "coordinates": [ -1.391833, 47.0665 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44003001, "NOM_USUEL": "ANCENIS", "LAT": 47.375, "LON": -1.1815, "ALTI": 27, "MIN_DATE": "1928-01-01", "MAX_DATE": "2013-03-31" }, "geometry": { "type": "Point", "coordinates": [ -1.1815, 47.375 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44015001, "NOM_USUEL": "BLAIN", "LAT": 47.472833, "LON": -1.771667, "ALTI": 13, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.771667, 47.472833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44018001, "NOM_USUEL": "BOUAYE LAC DE GRANDLIEU", "LAT": 47.143333, "LON": -1.693333, "ALTI": 8, "MIN_DATE": "1878-08-01", "MAX_DATE": "1880-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.693333, 47.143333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44020001, "NOM_USUEL": "NANTES-BOUGUENAIS", "LAT": 47.15, "LON": -1.608833, "ALTI": 26, "MIN_DATE": "1945-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.608833, 47.15 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44036001, "NOM_USUEL": "CHATEAUBRIANT", "LAT": 47.713333, "LON": -1.376667, "ALTI": 62, "MIN_DATE": "1878-01-01", "MAX_DATE": "1998-03-31" }, "geometry": { "type": "Point", "coordinates": [ -1.376667, 47.713333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44036002, "NOM_USUEL": "CHATEAUBRIANT PARC DES SPORTS", "LAT": 47.718333, "LON": -1.375, "ALTI": 70, "MIN_DATE": "1939-01-01", "MAX_DATE": "1964-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.375, 47.718333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44039001, "NOM_USUEL": "CHEIX-EN-RETZ ECOLE", "LAT": 47.181667, "LON": -1.813333, "ALTI": 20, "MIN_DATE": "1947-11-01", "MAX_DATE": "1955-10-31" }, "geometry": { "type": "Point", "coordinates": [ -1.813333, 47.181667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44043001, "NOM_USUEL": "CLISSON BOURG", "LAT": 47.086667, "LON": -1.28, "ALTI": 55, "MIN_DATE": "1884-03-01", "MAX_DATE": "1919-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.28, 47.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44045002, "NOM_USUEL": "CORDEMAIS AGGLOMERATION", "LAT": 47.29, "LON": -1.876667, "ALTI": 20, "MIN_DATE": "1884-03-01", "MAX_DATE": "1914-07-31" }, "geometry": { "type": "Point", "coordinates": [ -1.876667, 47.29 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44049002, "NOM_USUEL": "LE CROISIC PHARE DU FOUR", "LAT": 47.291667, "LON": -2.511667, "ALTI": 28, "MIN_DATE": "1885-01-01", "MAX_DATE": "1964-09-30" }, "geometry": { "type": "Point", "coordinates": [ -2.511667, 47.291667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44055001, "NOM_USUEL": "BAULE-ESCOUBLAC", "LAT": 47.293333, "LON": -2.386667, "ALTI": 6, "MIN_DATE": "1949-03-01", "MAX_DATE": "1998-04-30" }, "geometry": { "type": "Point", "coordinates": [ -2.386667, 47.293333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44062001, "NOM_USUEL": "LE GAVRE LE GRACINAIRE", "LAT": 47.52, "LON": -1.746667, "ALTI": 30, "MIN_DATE": "1928-01-01", "MAX_DATE": "1941-02-28" }, "geometry": { "type": "Point", "coordinates": [ -1.746667, 47.52 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44067001, "NOM_USUEL": "GUEMENE-PENFAO", "LAT": 47.625333, "LON": -1.889833, "ALTI": 33, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.889833, 47.625333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44068001, "NOM_USUEL": "GUENROUET", "LAT": 47.498333, "LON": -1.923333, "ALTI": 7, "MIN_DATE": "1878-06-01", "MAX_DATE": "2003-07-31" }, "geometry": { "type": "Point", "coordinates": [ -1.923333, 47.498333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44069001, "NOM_USUEL": "GUERANDE FAUBOURG SAINT-MICHEL", "LAT": 47.328333, "LON": -2.426667, "ALTI": 47, "MIN_DATE": "1934-12-01", "MAX_DATE": "1959-01-31" }, "geometry": { "type": "Point", "coordinates": [ -2.426667, 47.328333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44070001, "NOM_USUEL": "HAIE-FOUASSIERE", "LAT": 47.161833, "LON": -1.384667, "ALTI": 20, "MIN_DATE": "1948-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.384667, 47.161833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44072001, "NOM_USUEL": "HERBIGNAC AGGLOMERATION", "LAT": 47.45, "LON": -2.313333, "ALTI": 20, "MIN_DATE": "1884-03-01", "MAX_DATE": "1885-02-28" }, "geometry": { "type": "Point", "coordinates": [ -2.313333, 47.45 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44074001, "NOM_USUEL": "INDRE INDRET", "LAT": 47.2, "LON": -1.671667, "ALTI": 8, "MIN_DATE": "1885-03-01", "MAX_DATE": "1892-04-30" }, "geometry": { "type": "Point", "coordinates": [ -1.671667, 47.2 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44077001, "NOM_USUEL": "JOUE-SUR-ERDRE", "LAT": 47.518, "LON": -1.4275, "ALTI": 42, "MIN_DATE": "1884-03-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.4275, 47.518 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44081001, "NOM_USUEL": "LEGE AGGLOMERATION", "LAT": 46.883333, "LON": -1.598333, "ALTI": 56, "MIN_DATE": "1886-01-01", "MAX_DATE": "1890-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.598333, 46.883333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44087001, "NOM_USUEL": "MACHECOUL", "LAT": 46.993333, "LON": -1.808333, "ALTI": 5, "MIN_DATE": "1881-01-01", "MAX_DATE": "2003-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.808333, 46.993333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44109001, "NOM_USUEL": "NANTES-DOULON", "LAT": 47.22, "LON": -1.520667, "ALTI": 13, "MIN_DATE": "1928-01-01", "MAX_DATE": "2016-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.520667, 47.22 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44109002, "NOM_USUEL": "NANTES-CONTRIE", "LAT": 47.22, "LON": -1.598333, "ALTI": 63, "MIN_DATE": "1929-01-01", "MAX_DATE": "2005-05-31" }, "geometry": { "type": "Point", "coordinates": [ -1.598333, 47.22 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44109003, "NOM_USUEL": "PETIT-PORT", "LAT": 47.218333, "LON": -1.553333, "ALTI": 41, "MIN_DATE": "1877-01-01", "MAX_DATE": "1964-11-30" }, "geometry": { "type": "Point", "coordinates": [ -1.553333, 47.218333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44110002, "NOM_USUEL": "NORT-SUR-ERDRE", "LAT": 47.425167, "LON": -1.513667, "ALTI": 13, "MIN_DATE": "1885-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.513667, 47.425167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44113001, "NOM_USUEL": "NOZAY", "LAT": 47.572833, "LON": -1.6115, "ALTI": 44, "MIN_DATE": "1877-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.6115, 47.572833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44115001, "NOM_USUEL": "OUDON BOURG", "LAT": 47.348333, "LON": -1.285, "ALTI": 30, "MIN_DATE": "1884-03-01", "MAX_DATE": "1896-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.285, 47.348333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44116001, "NOM_USUEL": "PAIMBOEUF LE HAUT PAIMBOEUF", "LAT": 47.286667, "LON": -2.031667, "ALTI": 8, "MIN_DATE": "1939-01-01", "MAX_DATE": "1974-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.031667, 47.286667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44116002, "NOM_USUEL": "PAIMBOEUF", "LAT": 47.286667, "LON": -2.031667, "ALTI": 8, "MIN_DATE": "1948-01-01", "MAX_DATE": "1958-01-31" }, "geometry": { "type": "Point", "coordinates": [ -2.031667, 47.286667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44117001, "NOM_USUEL": "LE PALLET AGGLOMERATION", "LAT": 47.136667, "LON": -1.335, "ALTI": 55, "MIN_DATE": "1886-01-01", "MAX_DATE": "1887-07-31" }, "geometry": { "type": "Point", "coordinates": [ -1.335, 47.136667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44125001, "NOM_USUEL": "PIRIAC-SUR-MER", "LAT": 47.368333, "LON": -2.513333, "ALTI": 28, "MIN_DATE": "1878-01-01", "MAX_DATE": "1887-09-30" }, "geometry": { "type": "Point", "coordinates": [ -2.513333, 47.368333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44128001, "NOM_USUEL": "PLESSE AGGLOMERATION", "LAT": 47.54, "LON": -1.886667, "ALTI": 25, "MIN_DATE": "1893-01-01", "MAX_DATE": "1916-10-31" }, "geometry": { "type": "Point", "coordinates": [ -1.886667, 47.54 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44129001, "NOM_USUEL": "PONTCHATEAU", "LAT": 47.439667, "LON": -2.105167, "ALTI": 34, "MIN_DATE": "1928-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -2.105167, 47.439667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44131001, "NOM_USUEL": "PORNIC", "LAT": 47.101167, "LON": -2.071833, "ALTI": 21, "MIN_DATE": "1881-01-01", "MAX_DATE": "2012-09-30" }, "geometry": { "type": "Point", "coordinates": [ -2.071833, 47.101167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44136001, "NOM_USUEL": "PREFAILLES", "LAT": 47.128333, "LON": -2.218333, "ALTI": 10, "MIN_DATE": "1887-08-01", "MAX_DATE": "1948-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.218333, 47.128333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44145001, "NOM_USUEL": "ROUANS", "LAT": 47.213333, "LON": -1.825, "ALTI": 5, "MIN_DATE": "1948-04-01", "MAX_DATE": "1965-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.825, 47.213333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44145002, "NOM_USUEL": "ROUANS ECLUSE DE LA MARTINIERE", "LAT": 47.185, "LON": -1.856667, "ALTI": 4, "MIN_DATE": "1928-10-01", "MAX_DATE": "1948-03-31" }, "geometry": { "type": "Point", "coordinates": [ -1.856667, 47.185 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44170001, "NOM_USUEL": "SAINT-JULIEN-DE-VOUVANTES", "LAT": 47.641667, "LON": -1.238333, "ALTI": 65, "MIN_DATE": "1878-06-01", "MAX_DATE": "1896-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.238333, 47.641667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44180001, "NOM_USUEL": "ST-MARS-LA-JAIL", "LAT": 47.526667, "LON": -1.185, "ALTI": 30, "MIN_DATE": "1928-01-01", "MAX_DATE": "2000-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.185, 47.526667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44184001, "NOM_USUEL": "PTE DE CHEMOULIN", "LAT": 47.233667, "LON": -2.2985, "ALTI": 14, "MIN_DATE": "1946-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -2.2985, 47.233667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44184002, "NOM_USUEL": "ST-NAZAIRE COMMERCE", "LAT": 47.278333, "LON": -2.218333, "ALTI": 4, "MIN_DATE": "1877-01-01", "MAX_DATE": "1982-01-31" }, "geometry": { "type": "Point", "coordinates": [ -2.218333, 47.278333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44184003, "NOM_USUEL": "ST-NAZAIRE MINDIN", "LAT": 47.278333, "LON": -2.218333, "ALTI": 10, "MIN_DATE": "1884-03-01", "MAX_DATE": "1890-12-30" }, "geometry": { "type": "Point", "coordinates": [ -2.218333, 47.278333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44184004, "NOM_USUEL": "SAINT-NAZAIRE PORT", "LAT": 47.278333, "LON": -2.218333, "ALTI": 10, "MIN_DATE": "1939-01-01", "MAX_DATE": "1942-02-28" }, "geometry": { "type": "Point", "coordinates": [ -2.218333, 47.278333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44185001, "NOM_USUEL": "SAINT-NICOLAS-DE-REDON BOURG", "LAT": 47.643333, "LON": -2.065, "ALTI": 10, "MIN_DATE": "1878-01-01", "MAX_DATE": "1957-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.065, 47.643333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44188001, "NOM_USUEL": "ST-PHILBERT", "LAT": 47.029167, "LON": -1.652833, "ALTI": 18, "MIN_DATE": "1884-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.652833, 47.029167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44195001, "NOM_USUEL": "SAVENAY", "LAT": 47.355, "LON": -1.918333, "ALTI": 66, "MIN_DATE": "1884-03-01", "MAX_DATE": "1998-02-28" }, "geometry": { "type": "Point", "coordinates": [ -1.918333, 47.355 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44213001, "NOM_USUEL": "VARADES PN 279 BIS", "LAT": 47.383333, "LON": -1.028333, "ALTI": 15, "MIN_DATE": "1884-03-01", "MAX_DATE": "1949-01-31" }, "geometry": { "type": "Point", "coordinates": [ -1.028333, 47.383333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44215001, "NOM_USUEL": "VERTOU ECLUSE DU VERTOU", "LAT": 47.168333, "LON": -1.471667, "ALTI": 18, "MIN_DATE": "1884-03-01", "MAX_DATE": "1957-09-30" }, "geometry": { "type": "Point", "coordinates": [ -1.471667, 47.168333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44216001, "NOM_USUEL": "VIEILLEVIGNE AGGLOMERATION", "LAT": 46.97, "LON": -1.431667, "ALTI": 42, "MIN_DATE": "1884-03-01", "MAX_DATE": "1903-07-31" }, "geometry": { "type": "Point", "coordinates": [ -1.431667, 46.97 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44004001, "NOM_USUEL": "ANETZ", "LAT": 47.376333, "LON": -1.100833, "ALTI": 23, "MIN_DATE": "2013-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.100833, 47.376333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44005001, "NOM_USUEL": "ARTHON-EN-RETZ", "LAT": 47.116667, "LON": -1.933333, "ALTI": 12, "MIN_DATE": "1966-10-01", "MAX_DATE": "1985-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.933333, 47.116667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44009001, "NOM_USUEL": "BSE-GOULAINE", "LAT": 47.215, "LON": -1.466667, "ALTI": 6, "MIN_DATE": "1991-01-01", "MAX_DATE": "1998-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.466667, 47.215 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44012001, "NOM_USUEL": "LA BERNERIE-EN-RETZ ECOLE", "LAT": 47.081667, "LON": -2.036667, "ALTI": 24, "MIN_DATE": "1958-03-01", "MAX_DATE": "1958-05-31" }, "geometry": { "type": "Point", "coordinates": [ -2.036667, 47.081667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44021001, "NOM_USUEL": "BOURGNEUF", "LAT": 47.0605, "LON": -1.928, "ALTI": 20, "MIN_DATE": "1995-01-01", "MAX_DATE": "2013-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.928, 47.0605 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44021002, "NOM_USUEL": "BOURGNEUF", "LAT": 47.041167, "LON": -1.957, "ALTI": 6, "MIN_DATE": "2014-01-01", "MAX_DATE": "2016-02-29" }, "geometry": { "type": "Point", "coordinates": [ -1.957, 47.041167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44025001, "NOM_USUEL": "CAMPBON", "LAT": 47.411667, "LON": -1.966667, "ALTI": 10, "MIN_DATE": "1952-09-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.966667, 47.411667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44045001, "NOM_USUEL": "CORDEMAIS", "LAT": 47.275, "LON": -1.875, "ALTI": 7, "MIN_DATE": "1973-08-01", "MAX_DATE": "1977-06-30" }, "geometry": { "type": "Point", "coordinates": [ -1.875, 47.275 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44049001, "NOM_USUEL": "LE CROISIC", "LAT": 47.291667, "LON": -2.511667, "ALTI": 3, "MIN_DATE": "1951-04-01", "MAX_DATE": "1952-04-30" }, "geometry": { "type": "Point", "coordinates": [ -2.511667, 47.291667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44051002, "NOM_USUEL": "DERVAL", "LAT": 47.692333, "LON": -1.687167, "ALTI": 43, "MIN_DATE": "1978-01-01", "MAX_DATE": "2017-08-31" }, "geometry": { "type": "Point", "coordinates": [ -1.687167, 47.692333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44054001, "NOM_USUEL": "ERBRAY", "LAT": 47.676667, "LON": -1.268333, "ALTI": 96, "MIN_DATE": "1990-04-01", "MAX_DATE": "1993-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.268333, 47.676667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44056001, "NOM_USUEL": "FAY-DE-BRETAGNE", "LAT": 47.371667, "LON": -1.803333, "ALTI": 72, "MIN_DATE": "1986-01-01", "MAX_DATE": "1989-08-31" }, "geometry": { "type": "Point", "coordinates": [ -1.803333, 47.371667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44069002, "NOM_USUEL": "GUERANDE", "LAT": 47.292333, "LON": -2.430167, "ALTI": 4, "MIN_DATE": "1994-10-01", "MAX_DATE": "2020-01-08" }, "geometry": { "type": "Point", "coordinates": [ -2.430167, 47.292333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44072002, "NOM_USUEL": "HERBIGNAC", "LAT": 47.4265, "LON": -2.3365, "ALTI": 22, "MIN_DATE": "1985-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -2.3365, 47.4265 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44097001, "NOM_USUEL": "MESQUER", "LAT": 47.406, "LON": -2.463, "ALTI": 3, "MIN_DATE": "1984-09-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.463, 47.406 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44097002, "NOM_USUEL": "MESQUER BEL-AIR", "LAT": 47.4, "LON": -2.456667, "ALTI": 15, "MIN_DATE": "1960-01-01", "MAX_DATE": "1961-04-30" }, "geometry": { "type": "Point", "coordinates": [ -2.456667, 47.4 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44103001, "NOM_USUEL": "ST NAZAIRE-MONTOIR", "LAT": 47.313833, "LON": -2.1545, "ALTI": 3, "MIN_DATE": "1957-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -2.1545, 47.313833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44109012, "NOM_USUEL": "NANTES-VILLE", "LAT": 47.227667, "LON": -1.514, "ALTI": 17, "MIN_DATE": "1992-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.514, 47.227667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44117002, "NOM_USUEL": "LE PALLET_SAPC", "LAT": 47.1415, "LON": -1.336833, "ALTI": 35, "MIN_DATE": "1995-05-12", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.336833, 47.1415 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44120001, "NOM_USUEL": "PELLERIN(LE)", "LAT": 47.205, "LON": -1.763333, "ALTI": 7, "MIN_DATE": "1966-06-01", "MAX_DATE": "1989-02-28" }, "geometry": { "type": "Point", "coordinates": [ -1.763333, 47.205 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44120002, "NOM_USUEL": "PELLERIN(LE)", "LAT": 47.210333, "LON": -1.828667, "ALTI": 4, "MIN_DATE": "1989-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.828667, 47.210333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44120800, "NOM_USUEL": "LE PELLERIN_DOUBLE", "LAT": 47.2105, "LON": -1.827, "ALTI": 4, "MIN_DATE": "2019-03-01", "MAX_DATE": "2021-04-30" }, "geometry": { "type": "Point", "coordinates": [ -1.827, 47.2105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44131002, "NOM_USUEL": "PORNIC", "LAT": 47.122, "LON": -2.0925, "ALTI": 25, "MIN_DATE": "2013-02-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -2.0925, 47.122 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44154001, "NOM_USUEL": "ST-BREVIN-PINS", "LAT": 47.24, "LON": -2.152167, "ALTI": 12, "MIN_DATE": "1975-06-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -2.152167, 47.24 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44168001, "NOM_USUEL": "SAINT-JOACHIM_SAE", "LAT": 47.3815, "LON": -2.1925, "ALTI": 3, "MIN_DATE": "1976-01-01", "MAX_DATE": "2017-07-31" }, "geometry": { "type": "Point", "coordinates": [ -2.1925, 47.3815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44180005, "NOM_USUEL": "ST-MARS-LA-JAIL", "LAT": 47.526167, "LON": -1.185333, "ALTI": 32, "MIN_DATE": "2001-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.185333, 47.526167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44181001, "NOM_USUEL": "ST-MEME-LE-TENU", "LAT": 47.005667, "LON": -1.7825, "ALTI": 4, "MIN_DATE": "2003-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ -1.7825, 47.005667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44195003, "NOM_USUEL": "SAVENAY", "LAT": 47.346167, "LON": -1.925333, "ALTI": 11, "MIN_DATE": "1998-03-01", "MAX_DATE": "2020-11-30" }, "geometry": { "type": "Point", "coordinates": [ -1.925333, 47.346167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44199001, "NOM_USUEL": "SOUDAN", "LAT": 47.733333, "LON": -1.333333, "ALTI": 64, "MIN_DATE": "1964-05-01", "MAX_DATE": "1989-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.333333, 47.733333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44199002, "NOM_USUEL": "SOUDAN", "LAT": 47.737167, "LON": -1.2765, "ALTI": 77, "MIN_DATE": "1994-02-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.2765, 47.737167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 44217001, "NOM_USUEL": "VIGNEUX", "LAT": 47.3075, "LON": -1.685833, "ALTI": 75, "MIN_DATE": "1992-03-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ -1.685833, 47.3075 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69001001, "NOM_USUEL": "AFFOUX AGGLOMERATION", "LAT": 45.845, "LON": 4.405, "ALTI": 850, "MIN_DATE": "1936-01-09", "MAX_DATE": "1941-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.405, 45.845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69002001, "NOM_USUEL": "AIGUEPERSE ECOLE", "LAT": 46.278333, "LON": 4.435, "ALTI": 430, "MIN_DATE": "1913-12-01", "MAX_DATE": "1932-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.435, 46.278333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69006001, "NOM_USUEL": "AMPLEPUIS BOURG", "LAT": 45.971667, "LON": 4.331667, "ALTI": 435, "MIN_DATE": "1928-01-01", "MAX_DATE": "1963-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.331667, 45.971667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69007001, "NOM_USUEL": "AMPUIS", "LAT": 45.490667, "LON": 4.811167, "ALTI": 157, "MIN_DATE": "1930-11-01", "MAX_DATE": "2020-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.811167, 45.490667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69009001, "NOM_USUEL": "ANSE AGGLOMERATION", "LAT": 45.935, "LON": 4.718333, "ALTI": 177, "MIN_DATE": "1929-04-01", "MAX_DATE": "1938-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.718333, 45.935 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69010001, "NOM_USUEL": "L'ARBRESLE AGGLOMERATION", "LAT": 45.835, "LON": 4.616667, "ALTI": 341, "MIN_DATE": "1871-12-01", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.616667, 45.835 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69018001, "NOM_USUEL": "BEAUJEU PHARMACIE", "LAT": 46.153333, "LON": 4.591667, "ALTI": 300, "MIN_DATE": "1913-12-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.591667, 46.153333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69019001, "NOM_USUEL": "BELLEVILLE AGGLOMERATION", "LAT": 46.11, "LON": 4.746667, "ALTI": 191, "MIN_DATE": "1888-09-01", "MAX_DATE": "1912-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.746667, 46.11 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69029001, "NOM_USUEL": "LYON-BRON", "LAT": 45.721333, "LON": 4.949167, "ALTI": 202, "MIN_DATE": "1888-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.949167, 45.721333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69032001, "NOM_USUEL": "BULLY", "LAT": 45.845, "LON": 4.584167, "ALTI": 280, "MIN_DATE": "1941-04-01", "MAX_DATE": "2018-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.584167, 45.845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69034002, "NOM_USUEL": "CALUIRE-ET-CUIRE VASSIEUX", "LAT": 45.796667, "LON": 4.85, "ALTI": 260, "MIN_DATE": "1947-01-01", "MAX_DATE": "1961-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.85, 45.796667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69035001, "NOM_USUEL": "CENVES ECOLE", "LAT": 46.268333, "LON": 4.648333, "ALTI": 620, "MIN_DATE": "1932-05-01", "MAX_DATE": "1934-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.648333, 46.268333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69036001, "NOM_USUEL": "CERCIE AGGLOMERATION", "LAT": 46.12, "LON": 4.67, "ALTI": 229, "MIN_DATE": "1871-12-01", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.67, 46.12 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69038001, "NOM_USUEL": "CHAMBOST-LONGESSAIGNE ECOLE", "LAT": 45.775, "LON": 4.366667, "ALTI": 540, "MIN_DATE": "1913-12-01", "MAX_DATE": "1934-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.366667, 45.775 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69050001, "NOM_USUEL": "CHATILLON ECOLE", "LAT": 45.876667, "LON": 4.645, "ALTI": 288, "MIN_DATE": "1888-09-01", "MAX_DATE": "1930-12-30" }, "geometry": { "type": "Point", "coordinates": [ 4.645, 45.876667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69052001, "NOM_USUEL": "CHAZAY-D'AZERGUES", "LAT": 45.876667, "LON": 4.713333, "ALTI": 210, "MIN_DATE": "1949-03-01", "MAX_DATE": "1981-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.713333, 45.876667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69053001, "NOM_USUEL": "CHENAS CAVE COOPERATIVE", "LAT": 46.211667, "LON": 4.72, "ALTI": 380, "MIN_DATE": "1947-01-01", "MAX_DATE": "1959-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.72, 46.211667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69067001, "NOM_USUEL": "COURZIEU CARRIERES", "LAT": 45.741667, "LON": 4.571667, "ALTI": 363, "MIN_DATE": "1932-01-01", "MAX_DATE": "1935-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.571667, 45.741667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69070001, "NOM_USUEL": "CUBLIZE AGGLOMERATION", "LAT": 46.02, "LON": 4.376667, "ALTI": 452, "MIN_DATE": "1871-12-01", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.376667, 46.02 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69078001, "NOM_USUEL": "DUERNE AGGLOMERATION", "LAT": 45.685, "LON": 4.526667, "ALTI": 824, "MIN_DATE": "1871-12-01", "MAX_DATE": "1878-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.526667, 45.685 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69081001, "NOM_USUEL": "ECULLY", "LAT": 45.785, "LON": 4.788333, "ALTI": 255, "MIN_DATE": "1947-01-01", "MAX_DATE": "2003-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.788333, 45.785 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69091001, "NOM_USUEL": "GIVORS BOURG", "LAT": 45.591667, "LON": 4.77, "ALTI": 157, "MIN_DATE": "1915-12-01", "MAX_DATE": "1917-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.77, 45.591667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69102001, "NOM_USUEL": "JOUX FORT DE JOUX", "LAT": 45.886667, "LON": 4.371667, "ALTI": 1001, "MIN_DATE": "1876-01-01", "MAX_DATE": "1878-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.371667, 45.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69102002, "NOM_USUEL": "JOUX BOURG", "LAT": 45.886667, "LON": 4.371667, "ALTI": 495, "MIN_DATE": "1913-12-10", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.371667, 45.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69104002, "NOM_USUEL": "JULLIE BOURG", "LAT": 46.241667, "LON": 4.676667, "ALTI": 330, "MIN_DATE": "1913-12-01", "MAX_DATE": "1914-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.676667, 46.241667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69106002, "NOM_USUEL": "LACHASSAGNE BOURG", "LAT": 45.926667, "LON": 4.691667, "ALTI": 336, "MIN_DATE": "1887-01-01", "MAX_DATE": "1888-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.691667, 45.926667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69107001, "NOM_USUEL": "LAMURE-SUR-AZER", "LAT": 46.050333, "LON": 4.485167, "ALTI": 456, "MIN_DATE": "1932-04-15", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.485167, 46.050333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69107002, "NOM_USUEL": "LAMURE-SUR-AZERGUES BOURG", "LAT": 46.065, "LON": 4.491667, "ALTI": 400, "MIN_DATE": "1876-01-01", "MAX_DATE": "1889-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.491667, 46.065 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69108001, "NOM_USUEL": "LANCIE", "LAT": 46.1725, "LON": 4.717, "ALTI": 180, "MIN_DATE": "1933-04-01", "MAX_DATE": "2020-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.717, 46.1725 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69116001, "NOM_USUEL": "LIMONEST", "LAT": 45.834167, "LON": 4.765167, "ALTI": 365, "MIN_DATE": "1929-04-01", "MAX_DATE": "2014-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.765167, 45.834167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69118002, "NOM_USUEL": "LOIRE-SUR-RHONE BOURG", "LAT": 45.56, "LON": 4.805, "ALTI": 153, "MIN_DATE": "1876-01-01", "MAX_DATE": "1887-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.805, 45.56 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123003, "NOM_USUEL": "LYON ST-RAMBERT", "LAT": 45.790167, "LON": 4.810333, "ALTI": 200, "MIN_DATE": "1947-01-01", "MAX_DATE": "2010-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.810333, 45.790167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123004, "NOM_USUEL": "LYON-FOURVIERE", "LAT": 45.763333, "LON": 4.856667, "ALTI": 290, "MIN_DATE": "1928-01-01", "MAX_DATE": "1968-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.856667, 45.763333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123008, "NOM_USUEL": "LYON-ST IRENEE", "LAT": 45.763333, "LON": 4.856667, "ALTI": 260, "MIN_DATE": "1879-12-01", "MAX_DATE": "1892-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.856667, 45.763333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123009, "NOM_USUEL": "LYON-ST CLAIR", "LAT": 45.763333, "LON": 4.856667, "ALTI": 165, "MIN_DATE": "1934-01-01", "MAX_DATE": "1959-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.856667, 45.763333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123010, "NOM_USUEL": "LYON-ECOLE DES METIERS", "LAT": 45.766667, "LON": 4.835, "ALTI": 174, "MIN_DATE": "1934-01-01", "MAX_DATE": "1940-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.835, 45.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123012, "NOM_USUEL": "LYON-PERRACHE", "LAT": 45.766667, "LON": 4.835, "ALTI": 184, "MIN_DATE": "1913-12-01", "MAX_DATE": "1937-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.835, 45.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123013, "NOM_USUEL": "LYON-LAMOTTE", "LAT": 45.766667, "LON": 4.835, "ALTI": 182, "MIN_DATE": "1854-07-01", "MAX_DATE": "1894-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.835, 45.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123015, "NOM_USUEL": "LYON-TETE D'OR", "LAT": 45.766667, "LON": 4.835, "ALTI": 172, "MIN_DATE": "1879-01-01", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.835, 45.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123020, "NOM_USUEL": "LYON AMPERE", "LAT": 45.766667, "LON": 4.835, "ALTI": 169, "MIN_DATE": "1851-12-01", "MAX_DATE": "1866-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.835, 45.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69135001, "NOM_USUEL": "MONSOLS", "LAT": 46.219167, "LON": 4.523167, "ALTI": 525, "MIN_DATE": "1936-10-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.523167, 46.219167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69135003, "NOM_USUEL": "MONSOLS BOURG", "LAT": 46.218333, "LON": 4.518333, "ALTI": 587, "MIN_DATE": "1876-01-01", "MAX_DATE": "1915-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.518333, 46.218333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69135004, "NOM_USUEL": "MONSOLS BOURG", "LAT": 46.218333, "LON": 4.518333, "ALTI": 535, "MIN_DATE": "1913-12-01", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.518333, 46.218333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69137001, "NOM_USUEL": "MONTMELAS-SAINT-SORLIN", "LAT": 46.016667, "LON": 4.61, "ALTI": 480, "MIN_DATE": "1921-01-01", "MAX_DATE": "1978-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.61, 46.016667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69141001, "NOM_USUEL": "MORNANT", "LAT": 45.6145, "LON": 4.673833, "ALTI": 343, "MIN_DATE": "1888-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.673833, 45.6145 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69152001, "NOM_USUEL": "PIERRE-BENITE BOURG", "LAT": 45.703333, "LON": 4.826667, "ALTI": 164, "MIN_DATE": "1889-01-01", "MAX_DATE": "1891-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.826667, 45.703333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69160001, "NOM_USUEL": "POULE-LES-ECHARMEAUX", "LAT": 46.148333, "LON": 4.456667, "ALTI": 719, "MIN_DATE": "1888-01-01", "MAX_DATE": "1944-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.456667, 46.148333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69172001, "NOM_USUEL": "SALLES-ARBUISSONNAS-BEAUJOLAIS", "LAT": 46.051667, "LON": 4.633333, "ALTI": 410, "MIN_DATE": "1930-06-01", "MAX_DATE": "1936-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.633333, 46.051667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69174001, "NOM_USUEL": "LES SAUVAGE COL", "LAT": 45.941667, "LON": 4.393333, "ALTI": 720, "MIN_DATE": "1896-06-01", "MAX_DATE": "1997-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.393333, 45.941667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69181001, "NOM_USUEL": "ST-APPOLINAIRE", "LAT": 45.977, "LON": 4.423833, "ALTI": 700, "MIN_DATE": "1901-06-01", "MAX_DATE": "2010-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.423833, 45.977 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69189001, "NOM_USUEL": "SAINTE-COLOMBE", "LAT": 45.526667, "LON": 4.868333, "ALTI": 153, "MIN_DATE": "1939-04-01", "MAX_DATE": "1941-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.868333, 45.526667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69191001, "NOM_USUEL": "SAINT-CYR-AU-MONT-D'OR", "LAT": 45.813333, "LON": 4.818333, "ALTI": 320, "MIN_DATE": "1949-05-01", "MAX_DATE": "1953-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.818333, 45.813333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69201001, "NOM_USUEL": "SAINTE-FOY-L'ARGENTIERE BOURG", "LAT": 45.708333, "LON": 4.47, "ALTI": 438, "MIN_DATE": "1871-12-01", "MAX_DATE": "1929-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.47, 45.708333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69203001, "NOM_USUEL": "ST-GENIS-L'ARGENTIERE", "LAT": 45.7, "LON": 4.4845, "ALTI": 512, "MIN_DATE": "1930-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.4845, 45.7 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69204001, "NOM_USUEL": "SAINT-GENIS-LAVAL", "LAT": 45.695, "LON": 4.793333, "ALTI": 260, "MIN_DATE": "1880-07-01", "MAX_DATE": "1989-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.793333, 45.695 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69204002, "NOM_USUEL": "ST-GENIS-LAVAL", "LAT": 45.694667, "LON": 4.782333, "ALTI": 290, "MIN_DATE": "1881-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.782333, 45.694667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69212001, "NOM_USUEL": "SAINT-JEAN-DES-VIGNES BOURG", "LAT": 45.875, "LON": 4.683333, "ALTI": 380, "MIN_DATE": "1891-01-01", "MAX_DATE": "1938-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.683333, 45.875 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69219001, "NOM_USUEL": "SAINT-LAURENT-D'AGNY ECOLE", "LAT": 45.641667, "LON": 4.685, "ALTI": 250, "MIN_DATE": "1930-11-01", "MAX_DATE": "1938-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.685, 45.641667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69222001, "NOM_USUEL": "SAINT-LAURENT-D'OINGT", "LAT": 45.943333, "LON": 4.563333, "ALTI": 276, "MIN_DATE": "1872-08-01", "MAX_DATE": "1881-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.563333, 45.943333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69222002, "NOM_USUEL": "SAINT-LAURENT-D'OINGT BOURG", "LAT": 45.945, "LON": 4.563333, "ALTI": 552, "MIN_DATE": "1876-01-01", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.563333, 45.945 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69227001, "NOM_USUEL": "SAINT-MARTIN-EN-HAUT", "LAT": 45.66, "LON": 4.558333, "ALTI": 737, "MIN_DATE": "1879-02-01", "MAX_DATE": "1886-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.558333, 45.66 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69229001, "NOM_USUEL": "SAINT-NIZIER-D'AZERGUES ECOLE", "LAT": 46.088333, "LON": 4.465, "ALTI": 550, "MIN_DATE": "1949-04-01", "MAX_DATE": "1952-07-22" }, "geometry": { "type": "Point", "coordinates": [ 4.465, 46.088333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69229002, "NOM_USUEL": "SAINT-NIZIER-D'AZERGUES", "LAT": 46.088333, "LON": 4.465, "ALTI": 399, "MIN_DATE": "1871-12-01", "MAX_DATE": "1886-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.465, 46.088333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69235001, "NOM_USUEL": "SAINT-ROMAIN-EN-GAL", "LAT": 45.533333, "LON": 4.856667, "ALTI": 167, "MIN_DATE": "1887-08-01", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.856667, 45.533333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69238001, "NOM_USUEL": "ST-SYMPHORIEN-C", "LAT": 45.638667, "LON": 4.471333, "ALTI": 610, "MIN_DATE": "1948-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.471333, 45.638667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69238003, "NOM_USUEL": "SAINT-SYMPHORIEN-SUR-COISE", "LAT": 45.635, "LON": 4.458333, "ALTI": 585, "MIN_DATE": "1877-01-01", "MAX_DATE": "1878-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.458333, 45.635 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69239001, "NOM_USUEL": "ST-VERAND", "LAT": 45.925, "LON": 4.501667, "ALTI": 430, "MIN_DATE": "1932-04-01", "MAX_DATE": "2006-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.501667, 45.925 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69243001, "NOM_USUEL": "TARARE AGGLOMERATION", "LAT": 45.895, "LON": 4.435, "ALTI": 415, "MIN_DATE": "1871-12-01", "MAX_DATE": "1930-12-30" }, "geometry": { "type": "Point", "coordinates": [ 4.435, 45.895 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69248001, "NOM_USUEL": "THIZY", "LAT": 46.031667, "LON": 4.311667, "ALTI": 563, "MIN_DATE": "1913-12-01", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.311667, 46.031667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69248002, "NOM_USUEL": "BOURG-DE-THIZY BOURG", "LAT": 46.035, "LON": 4.298333, "ALTI": 280, "MIN_DATE": "1876-01-01", "MAX_DATE": "1878-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.298333, 46.035 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69249002, "NOM_USUEL": "THURINS BOURG", "LAT": 45.68, "LON": 4.65, "ALTI": 377, "MIN_DATE": "1876-01-01", "MAX_DATE": "1878-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.65, 45.68 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69250001, "NOM_USUEL": "LA TOUR-DE-SALVAGNY PRE-VIEUX", "LAT": 45.815, "LON": 4.716667, "ALTI": 360, "MIN_DATE": "1948-10-01", "MAX_DATE": "1974-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.716667, 45.815 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69251001, "NOM_USUEL": "TRADES", "LAT": 46.279, "LON": 4.566667, "ALTI": 445, "MIN_DATE": "1932-05-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.566667, 46.279 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69255001, "NOM_USUEL": "VAUGNERAY LA PIERRE RONDE", "LAT": 45.738333, "LON": 4.656667, "ALTI": 450, "MIN_DATE": "1947-01-01", "MAX_DATE": "1986-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.656667, 45.738333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69257001, "NOM_USUEL": "VAUX-EN-BEAUJOL", "LAT": 46.057, "LON": 4.586833, "ALTI": 423, "MIN_DATE": "1940-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.586833, 46.057 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69258001, "NOM_USUEL": "VAUXRENARD", "LAT": 46.217, "LON": 4.6285, "ALTI": 740, "MIN_DATE": "1901-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.6285, 46.217 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69263001, "NOM_USUEL": "VILLECHENEVE", "LAT": 45.813333, "LON": 4.406667, "ALTI": 740, "MIN_DATE": "1915-01-01", "MAX_DATE": "1915-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.406667, 45.813333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69264001, "NOM_USUEL": "VILLEFRANCHE", "LAT": 45.987167, "LON": 4.737667, "ALTI": 174, "MIN_DATE": "1930-11-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.737667, 45.987167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69264003, "NOM_USUEL": "VILLEFRANCHE-SUR-SAONE", "LAT": 45.988333, "LON": 4.723333, "ALTI": 202, "MIN_DATE": "1876-01-01", "MAX_DATE": "1885-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.723333, 45.988333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69264004, "NOM_USUEL": "VILLEFRANCHE BG", "LAT": 45.988333, "LON": 4.723333, "ALTI": 200, "MIN_DATE": "1901-01-01", "MAX_DATE": "1912-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.723333, 45.988333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69267001, "NOM_USUEL": "VILLIE-MORGON ROUTE DE TRUGES", "LAT": 46.161667, "LON": 4.68, "ALTI": 289, "MIN_DATE": "1945-11-01", "MAX_DATE": "1982-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.68, 46.161667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69269001, "NOM_USUEL": "YZERON AGGLOMERATION", "LAT": 45.706667, "LON": 4.59, "ALTI": 642, "MIN_DATE": "1887-04-01", "MAX_DATE": "1917-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.59, 45.706667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69269002, "NOM_USUEL": "YZERON BOURG", "LAT": 45.706667, "LON": 4.59, "ALTI": 720, "MIN_DATE": "1928-01-01", "MAX_DATE": "1939-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.59, 45.706667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69008001, "NOM_USUEL": "ANCY_SAPC", "LAT": 45.843333, "LON": 4.508167, "ALTI": 626, "MIN_DATE": "2018-11-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.508167, 45.843333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69019002, "NOM_USUEL": "BELLEVILLE ROUTE DE BEAUJEU", "LAT": 46.11, "LON": 4.746667, "ALTI": 195, "MIN_DATE": "1971-04-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.746667, 46.11 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69021001, "NOM_USUEL": "BESSENAY", "LAT": 45.776667, "LON": 4.551667, "ALTI": 400, "MIN_DATE": "1979-01-01", "MAX_DATE": "1980-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.551667, 45.776667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69023001, "NOM_USUEL": "BLACE - FOND", "LAT": 46.033333, "LON": 4.661667, "ALTI": 250, "MIN_DATE": "1956-01-01", "MAX_DATE": "1991-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.661667, 46.033333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69023002, "NOM_USUEL": "BLACE", "LAT": 46.0345, "LON": 4.642, "ALTI": 340, "MIN_DATE": "1993-06-01", "MAX_DATE": "2016-08-23" }, "geometry": { "type": "Point", "coordinates": [ 4.642, 46.0345 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69026001, "NOM_USUEL": "LE BREUIL", "LAT": 45.896, "LON": 4.583, "ALTI": 275, "MIN_DATE": "1972-01-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.583, 45.896 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69028001, "NOM_USUEL": "BRINDAS", "LAT": 45.713333, "LON": 4.693167, "ALTI": 317, "MIN_DATE": "2004-12-21", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.693167, 45.713333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69029002, "NOM_USUEL": "BRON - VINATIER", "LAT": 45.761667, "LON": 4.895, "ALTI": 199, "MIN_DATE": "1959-01-01", "MAX_DATE": "2000-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.895, 45.761667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69030001, "NOM_USUEL": "BRULLIOLES", "LAT": 45.763333, "LON": 4.496667, "ALTI": 500, "MIN_DATE": "1956-01-01", "MAX_DATE": "1977-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.496667, 45.763333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69034001, "NOM_USUEL": "CALUIRE-ET-CUIRE", "LAT": 45.796667, "LON": 4.85, "ALTI": 165, "MIN_DATE": "1958-01-01", "MAX_DATE": "1970-02-28" }, "geometry": { "type": "Point", "coordinates": [ 4.85, 45.796667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69034003, "NOM_USUEL": "CALUIRE", "LAT": 45.811667, "LON": 4.876667, "ALTI": 269, "MIN_DATE": "1986-07-01", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.876667, 45.811667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69034004, "NOM_USUEL": "CALUIRE4", "LAT": 45.792833, "LON": 4.8435, "ALTI": 248, "MIN_DATE": "2006-01-01", "MAX_DATE": "2020-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.8435, 45.792833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69036003, "NOM_USUEL": "CERCIE EN BEAUJOLAIS", "LAT": 46.134, "LON": 4.672167, "ALTI": 262, "MIN_DATE": "2017-12-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.672167, 46.134 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69045001, "NOM_USUEL": "CHARENTAY LE GAILLARD", "LAT": 46.088333, "LON": 4.676667, "ALTI": 200, "MIN_DATE": "1957-01-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.676667, 46.088333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69046001, "NOM_USUEL": "CHARLY PROTECTION DES VEGETAUX", "LAT": 45.645, "LON": 4.795, "ALTI": 235, "MIN_DATE": "1970-09-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.795, 45.645 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69049001, "NOM_USUEL": "CHASSELAY MACHY", "LAT": 45.863333, "LON": 4.761667, "ALTI": 400, "MIN_DATE": "1990-02-01", "MAX_DATE": "1991-01-31" }, "geometry": { "type": "Point", "coordinates": [ 4.761667, 45.863333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69058001, "NOM_USUEL": "CHIROUBLES PRES", "LAT": 46.18, "LON": 4.665, "ALTI": 330, "MIN_DATE": "1983-01-01", "MAX_DATE": "1991-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.665, 46.18 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69058002, "NOM_USUEL": "CHIROUBLES", "LAT": 46.182667, "LON": 4.667167, "ALTI": 415, "MIN_DATE": "1992-05-14", "MAX_DATE": "2017-02-09" }, "geometry": { "type": "Point", "coordinates": [ 4.667167, 46.182667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69060001, "NOM_USUEL": "CLAVEISOLLES ECOLE", "LAT": 46.101667, "LON": 4.491667, "ALTI": 450, "MIN_DATE": "1953-06-01", "MAX_DATE": "1959-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.491667, 46.101667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69064001, "NOM_USUEL": "CONDRIEU", "LAT": 45.465, "LON": 4.765, "ALTI": 149, "MIN_DATE": "1957-01-01", "MAX_DATE": "1978-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.765, 45.465 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69064002, "NOM_USUEL": "CONDRIEU", "LAT": 45.470167, "LON": 4.776167, "ALTI": 155, "MIN_DATE": "2008-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.776167, 45.470167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69065001, "NOM_USUEL": "CORCELLES-EN-BEAUJOLAIS", "LAT": 46.155, "LON": 4.721667, "ALTI": 194, "MIN_DATE": "1959-01-01", "MAX_DATE": "1976-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.721667, 46.155 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69066001, "NOM_USUEL": "COURS-LA-VILLE", "LAT": 46.096667, "LON": 4.321667, "ALTI": 553, "MIN_DATE": "1986-03-01", "MAX_DATE": "1999-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.321667, 46.096667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69066002, "NOM_USUEL": "COURS-LA-VILLE", "LAT": 46.118333, "LON": 4.34, "ALTI": 610, "MIN_DATE": "1952-03-01", "MAX_DATE": "1972-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.34, 46.118333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69066003, "NOM_USUEL": "COURS LA VILLE_SAPC", "LAT": 46.098667, "LON": 4.325833, "ALTI": 578, "MIN_DATE": "2016-08-05", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.325833, 46.098667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69068001, "NOM_USUEL": "COUZON-AU-MONT-D'OR", "LAT": 45.845, "LON": 4.83, "ALTI": 168, "MIN_DATE": "1958-01-01", "MAX_DATE": "1974-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.83, 45.845 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69077001, "NOM_USUEL": "DRACE AMORGES", "LAT": 46.156667, "LON": 4.765, "ALTI": 181, "MIN_DATE": "1967-02-01", "MAX_DATE": "1985-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.765, 46.156667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69094001, "NOM_USUEL": "GREZIEU-LA-VARENNE LA GARDE", "LAT": 45.746667, "LON": 4.69, "ALTI": 315, "MIN_DATE": "1961-07-01", "MAX_DATE": "1976-02-29" }, "geometry": { "type": "Point", "coordinates": [ 4.69, 45.746667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69097002, "NOM_USUEL": "LES HAIES", "LAT": 45.504, "LON": 4.745167, "ALTI": 385, "MIN_DATE": "1973-12-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.745167, 45.504 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69100001, "NOM_USUEL": "IRIGNY RECHERCHE AGRONOMIQUE", "LAT": 45.675, "LON": 4.821667, "ALTI": 247, "MIN_DATE": "1959-02-01", "MAX_DATE": "1969-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.821667, 45.675 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69104001, "NOM_USUEL": "JULLIE", "LAT": 46.245, "LON": 4.6695, "ALTI": 410, "MIN_DATE": "1958-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.6695, 46.245 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69106001, "NOM_USUEL": "LACHASSAGNE", "LAT": 45.926667, "LON": 4.691667, "ALTI": 305, "MIN_DATE": "1958-01-01", "MAX_DATE": "1975-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.691667, 45.926667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69114001, "NOM_USUEL": "LIERGUES_SAPC", "LAT": 45.9765, "LON": 4.650333, "ALTI": 290, "MIN_DATE": "1992-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.650333, 45.9765 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69118001, "NOM_USUEL": "LOIRE-SUR-RHONE", "LAT": 45.56, "LON": 4.805, "ALTI": 158, "MIN_DATE": "1956-01-01", "MAX_DATE": "1971-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.805, 45.56 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69122001, "NOM_USUEL": "LUCENAY", "LAT": 45.905667, "LON": 4.694833, "ALTI": 255, "MIN_DATE": "1997-01-01", "MAX_DATE": "2016-09-06" }, "geometry": { "type": "Point", "coordinates": [ 4.694833, 45.905667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123001, "NOM_USUEL": "LYON-GERLAND", "LAT": 45.763333, "LON": 4.856667, "ALTI": 164, "MIN_DATE": "1961-01-01", "MAX_DATE": "1984-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.856667, 45.763333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123002, "NOM_USUEL": "LYON TETE D'OR", "LAT": 45.772833, "LON": 4.855167, "ALTI": 170, "MIN_DATE": "1961-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.855167, 45.772833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69123023, "NOM_USUEL": "LYON-FOURVIERE", "LAT": 45.759667, "LON": 4.818167, "ALTI": 310, "MIN_DATE": "2008-03-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.818167, 45.759667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69139002, "NOM_USUEL": "MONTROTTIER", "LAT": 45.785833, "LON": 4.469667, "ALTI": 630, "MIN_DATE": "2001-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.469667, 45.785833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69145001, "NOM_USUEL": "ODENAS", "LAT": 46.09, "LON": 4.646667, "ALTI": 330, "MIN_DATE": "1958-04-01", "MAX_DATE": "1985-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.646667, 46.09 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69151001, "NOM_USUEL": "LE PERREON BOURG", "LAT": 46.063333, "LON": 4.6, "ALTI": 285, "MIN_DATE": "1958-01-01", "MAX_DATE": "1980-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.6, 46.063333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69155001, "NOM_USUEL": "POMEYS", "LAT": 45.65, "LON": 4.443333, "ALTI": 650, "MIN_DATE": "1958-01-01", "MAX_DATE": "1965-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.443333, 45.65 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69156001, "NOM_USUEL": "POMMIERS", "LAT": 45.957167, "LON": 4.694167, "ALTI": 315, "MIN_DATE": "1987-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.694167, 45.957167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69158001, "NOM_USUEL": "PONT TRAMBOUZE", "LAT": 46.060667, "LON": 4.313, "ALTI": 425, "MIN_DATE": "1999-07-01", "MAX_DATE": "2020-11-30" }, "geometry": { "type": "Point", "coordinates": [ 4.313, 46.060667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69161001, "NOM_USUEL": "AZOLETTE", "LAT": 46.194333, "LON": 4.432833, "ALTI": 669, "MIN_DATE": "1985-02-01", "MAX_DATE": "2020-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.432833, 46.194333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69174002, "NOM_USUEL": "LES SAUVAGES", "LAT": 45.935333, "LON": 4.384167, "ALTI": 831, "MIN_DATE": "1997-04-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.384167, 45.935333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69176001, "NOM_USUEL": "SOUCIEU", "LAT": 45.665667, "LON": 4.692333, "ALTI": 367, "MIN_DATE": "1990-02-01", "MAX_DATE": "2018-11-26" }, "geometry": { "type": "Point", "coordinates": [ 4.692333, 45.665667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69180002, "NOM_USUEL": "STANDRE", "LAT": 45.6305, "LON": 4.599, "ALTI": 860, "MIN_DATE": "1999-11-07", "MAX_DATE": "2014-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.599, 45.6305 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69192001, "NOM_USUEL": "ST-CYR-CHATOUX", "LAT": 46.027167, "LON": 4.556833, "ALTI": 695, "MIN_DATE": "1987-04-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.556833, 46.027167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69195001, "NOM_USUEL": "ST-DIDIER - COG", "LAT": 45.596667, "LON": 4.61, "ALTI": 470, "MIN_DATE": "1958-01-01", "MAX_DATE": "1977-07-31" }, "geometry": { "type": "Point", "coordinates": [ 4.61, 45.596667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69195002, "NOM_USUEL": "ST-DIDIER-RIVER", "LAT": 45.595167, "LON": 4.5935, "ALTI": 600, "MIN_DATE": "1978-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.5935, 45.595167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69196001, "NOM_USUEL": "ST-DIDIER-BEAUJ", "LAT": 46.164167, "LON": 4.566333, "ALTI": 345, "MIN_DATE": "1959-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.566333, 46.164167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69204003, "NOM_USUEL": "ST-GENIS - COIN", "LAT": 45.666833, "LON": 4.789833, "ALTI": 275, "MIN_DATE": "1970-02-01", "MAX_DATE": "2011-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.789833, 45.666833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69206001, "NOM_USUEL": "ST-GEORGES-REN", "LAT": 46.058167, "LON": 4.710833, "ALTI": 190, "MIN_DATE": "2002-05-07", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.710833, 46.058167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69208001, "NOM_USUEL": "ST-GERMAIN-L AR", "LAT": 45.869333, "LON": 4.6045, "ALTI": 370, "MIN_DATE": "1993-03-01", "MAX_DATE": "2020-05-28" }, "geometry": { "type": "Point", "coordinates": [ 4.6045, 45.869333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69211001, "NOM_USUEL": "ST-JEAN-D ARDIE", "LAT": 46.117667, "LON": 4.702667, "ALTI": 240, "MIN_DATE": "1976-03-01", "MAX_DATE": "2016-08-23" }, "geometry": { "type": "Point", "coordinates": [ 4.702667, 46.117667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69218001, "NOM_USUEL": "SAINT LAGER", "LAT": 46.134167, "LON": 4.672333, "ALTI": 262, "MIN_DATE": "1985-12-01", "MAX_DATE": "2017-09-30" }, "geometry": { "type": "Point", "coordinates": [ 4.672333, 46.134167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69234001, "NOM_USUEL": "POPEY", "LAT": 45.856667, "LON": 4.523833, "ALTI": 364, "MIN_DATE": "2012-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.523833, 45.856667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69239002, "NOM_USUEL": "SAINT-VERAND", "LAT": 45.916333, "LON": 4.521167, "ALTI": 390, "MIN_DATE": "2006-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 4.521167, 45.916333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69241001, "NOM_USUEL": "TALUYERS PETIT BATARD", "LAT": 45.64, "LON": 4.721667, "ALTI": 365, "MIN_DATE": "1958-01-01", "MAX_DATE": "1972-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.721667, 45.64 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69244001, "NOM_USUEL": "TASSIN-MI-LUNE", "LAT": 45.760333, "LON": 4.7625, "ALTI": 230, "MIN_DATE": "1986-03-01", "MAX_DATE": "2016-04-30" }, "geometry": { "type": "Point", "coordinates": [ 4.7625, 45.760333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69248003, "NOM_USUEL": "MARDORE", "LAT": 46.0755, "LON": 4.368333, "ALTI": 700, "MIN_DATE": "1973-04-01", "MAX_DATE": "2015-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.368333, 46.0755 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69249001, "NOM_USUEL": "THURINS", "LAT": 45.688333, "LON": 4.62, "ALTI": 450, "MIN_DATE": "1958-01-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.62, 45.688333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69253001, "NOM_USUEL": "TUPIN-ET-SEMONS", "LAT": 45.471667, "LON": 4.776667, "ALTI": 150, "MIN_DATE": "1978-04-01", "MAX_DATE": "2007-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.776667, 45.471667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69256001, "NOM_USUEL": "VAULX-EN-VELIN", "LAT": 45.786667, "LON": 4.925, "ALTI": 182, "MIN_DATE": "1950-04-01", "MAX_DATE": "1969-03-31" }, "geometry": { "type": "Point", "coordinates": [ 4.925, 45.786667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69257003, "NOM_USUEL": "VAUX-EN-BEAUJOLAIS", "LAT": 46.058333, "LON": 4.59, "ALTI": 360, "MIN_DATE": "1959-02-01", "MAX_DATE": "1960-10-31" }, "geometry": { "type": "Point", "coordinates": [ 4.59, 46.058333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69259001, "NOM_USUEL": "VENISSIEUX LE CLUZEL", "LAT": 45.705, "LON": 4.881667, "ALTI": 195, "MIN_DATE": "1954-01-01", "MAX_DATE": "1976-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.881667, 45.705 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69264002, "NOM_USUEL": "VILLEFRANCHE-SUR-SAONE EST", "LAT": 45.988333, "LON": 4.723333, "ALTI": 190, "MIN_DATE": "1970-05-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.723333, 45.988333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69265001, "NOM_USUEL": "VILLE JARNIOUX", "LAT": 45.961667, "LON": 4.608333, "ALTI": 500, "MIN_DATE": "1958-03-01", "MAX_DATE": "1992-06-30" }, "geometry": { "type": "Point", "coordinates": [ 4.608333, 45.961667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69266001, "NOM_USUEL": "VILLEURBANNE", "LAT": 45.758333, "LON": 4.89, "ALTI": 177, "MIN_DATE": "1952-01-01", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.89, 45.758333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69266002, "NOM_USUEL": "VILLEURB CUSSET", "LAT": 45.766667, "LON": 4.906667, "ALTI": 180, "MIN_DATE": "1969-04-01", "MAX_DATE": "2008-05-31" }, "geometry": { "type": "Point", "coordinates": [ 4.906667, 45.766667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69272001, "NOM_USUEL": "COMMUNAY", "LAT": 45.606, "LON": 4.8395, "ALTI": 230, "MIN_DATE": "1968-03-01", "MAX_DATE": "2018-08-31" }, "geometry": { "type": "Point", "coordinates": [ 4.8395, 45.606 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69273001, "NOM_USUEL": "CORBAS", "LAT": 45.663333, "LON": 4.902667, "ALTI": 195, "MIN_DATE": "1982-01-01", "MAX_DATE": "2019-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.902667, 45.663333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69282001, "NOM_USUEL": "MEYZIEU LE CARREAU", "LAT": 45.765, "LON": 5.0, "ALTI": 194, "MIN_DATE": "1969-10-01", "MAX_DATE": "1979-12-31" }, "geometry": { "type": "Point", "coordinates": [ 5.0, 45.765 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69286003, "NOM_USUEL": "RILLIEUX", "LAT": 45.8355, "LON": 4.907833, "ALTI": 328, "MIN_DATE": "2013-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 4.907833, 45.8355 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 69299001, "NOM_USUEL": "LYON-ST EXUPERY", "LAT": 45.7265, "LON": 5.077833, "ALTI": 235, "MIN_DATE": "1975-04-20", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 5.077833, 45.7265 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82013001, "NOM_USUEL": "BEAUMONT", "LAT": 43.886667, "LON": 0.99, "ALTI": 133, "MIN_DATE": "1875-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.99, 43.886667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82018002, "NOM_USUEL": "BIOULE AGGLOMERATION", "LAT": 44.09, "LON": 1.54, "ALTI": 85, "MIN_DATE": "1881-07-01", "MAX_DATE": "1891-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.54, 44.09 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82028001, "NOM_USUEL": "CANALS AGGLOMERATION", "LAT": 43.851667, "LON": 1.291667, "ALTI": 135, "MIN_DATE": "1881-07-01", "MAX_DATE": "1919-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.291667, 43.851667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82033003, "NOM_USUEL": "CASTEL-VILLE", "LAT": 44.04, "LON": 1.106667, "ALTI": 87, "MIN_DATE": "1911-01-01", "MAX_DATE": "1963-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.106667, 44.04 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82033004, "NOM_USUEL": "CASTELSARRASIN VERRIES", "LAT": 44.04, "LON": 1.106667, "ALTI": 73, "MIN_DATE": "1872-03-01", "MAX_DATE": "1873-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.106667, 44.04 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82035001, "NOM_USUEL": "CAUMONT AGGLOMERATION", "LAT": 44.02, "LON": 0.998333, "ALTI": 120, "MIN_DATE": "1881-11-02", "MAX_DATE": "1890-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.998333, 44.02 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82037002, "NOM_USUEL": "CAUSSADE AGGLOMERATION", "LAT": 44.163333, "LON": 1.536667, "ALTI": 115, "MIN_DATE": "1875-01-01", "MAX_DATE": "1914-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.536667, 44.163333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82038001, "NOM_USUEL": "CAYLUS", "LAT": 44.235, "LON": 1.78, "ALTI": 220, "MIN_DATE": "1881-07-01", "MAX_DATE": "2004-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.78, 44.235 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82075001, "NOM_USUEL": "GRISOLLES AGGLOMERATION", "LAT": 43.826667, "LON": 1.296667, "ALTI": 110, "MIN_DATE": "1875-02-01", "MAX_DATE": "1890-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.296667, 43.826667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82087002, "NOM_USUEL": "LAFRANCAISE AGGLOMERATION", "LAT": 44.128333, "LON": 1.241667, "ALTI": 184, "MIN_DATE": "1881-09-01", "MAX_DATE": "1927-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.241667, 44.128333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82094002, "NOM_USUEL": "LAUZERTE-BOURG", "LAT": 44.256667, "LON": 1.136667, "ALTI": 217, "MIN_DATE": "1876-01-01", "MAX_DATE": "1977-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.136667, 44.256667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82097004, "NOM_USUEL": "LAVIT BOURG", "LAT": 43.958333, "LON": 0.921667, "ALTI": 230, "MIN_DATE": "1877-01-01", "MAX_DATE": "1879-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.921667, 43.958333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82113002, "NOM_USUEL": "MOLIERES AGGLOMERATION", "LAT": 44.193333, "LON": 1.363333, "ALTI": 179, "MIN_DATE": "1881-07-01", "MAX_DATE": "1912-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.363333, 44.193333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82115001, "NOM_USUEL": "MONCLAR-DE-QUERCY", "LAT": 43.966667, "LON": 1.585, "ALTI": 165, "MIN_DATE": "1896-04-01", "MAX_DATE": "1920-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.585, 43.966667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82117002, "NOM_USUEL": "MONTAIGU-DE-QUERCY", "LAT": 44.34, "LON": 1.015, "ALTI": 167, "MIN_DATE": "1876-01-01", "MAX_DATE": "1924-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.015, 44.34 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82119001, "NOM_USUEL": "MONTALZAT AGGLOMERATION", "LAT": 44.206667, "LON": 1.5, "ALTI": 300, "MIN_DATE": "1881-07-01", "MAX_DATE": "1924-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.5, 44.206667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82121002, "NOM_USUEL": "MONTAUBAN", "LAT": 44.028, "LON": 1.376667, "ALTI": 106, "MIN_DATE": "1874-12-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.376667, 44.028 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82121003, "NOM_USUEL": "MONTAUBAN PONTS-ET-CHAUSSEES", "LAT": 44.016667, "LON": 1.36, "ALTI": 84, "MIN_DATE": "1875-01-01", "MAX_DATE": "1879-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.36, 44.016667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82121004, "NOM_USUEL": "MONTAUBAN CANAL", "LAT": 44.016667, "LON": 1.36, "ALTI": 87, "MIN_DATE": "1897-01-01", "MAX_DATE": "1901-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.36, 44.016667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82128001, "NOM_USUEL": "MONTFERMIER", "LAT": 44.218333, "LON": 1.408333, "ALTI": 150, "MIN_DATE": "1947-01-01", "MAX_DATE": "1981-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.408333, 44.218333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82131001, "NOM_USUEL": "MONTPEZAT-DE-QUERCY", "LAT": 44.238333, "LON": 1.473333, "ALTI": 265, "MIN_DATE": "1875-05-01", "MAX_DATE": "1877-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.473333, 44.238333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82147001, "NOM_USUEL": "PUYLAGARDE AGGLOMERATION", "LAT": 44.298333, "LON": 1.838333, "ALTI": 420, "MIN_DATE": "1912-01-01", "MAX_DATE": "1922-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.838333, 44.298333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82150001, "NOM_USUEL": "REYNIES AGGLOMERATION", "LAT": 43.918333, "LON": 1.4, "ALTI": 88, "MIN_DATE": "1876-01-01", "MAX_DATE": "1880-10-31" }, "geometry": { "type": "Point", "coordinates": [ 1.4, 43.918333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82155002, "NOM_USUEL": "SAINT-ANTONIN-NOBLE-VAL", "LAT": 44.153333, "LON": 1.756667, "ALTI": 130, "MIN_DATE": "1875-10-01", "MAX_DATE": "1924-02-28" }, "geometry": { "type": "Point", "coordinates": [ 1.756667, 44.153333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82165001, "NOM_USUEL": "SAINT-LOUP AGGLOMERATION", "LAT": 44.085, "LON": 0.856667, "ALTI": 183, "MIN_DATE": "1881-10-01", "MAX_DATE": "1892-05-31" }, "geometry": { "type": "Point", "coordinates": [ 0.856667, 44.085 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82186002, "NOM_USUEL": "VALENCE AGGLOMERATION", "LAT": 44.108333, "LON": 0.888333, "ALTI": 68, "MIN_DATE": "1897-01-01", "MAX_DATE": "1920-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.888333, 44.108333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82194002, "NOM_USUEL": "VILLEBRUMIER AGGLOMERATION", "LAT": 43.906667, "LON": 1.455, "ALTI": 97, "MIN_DATE": "1881-11-01", "MAX_DATE": "1892-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.455, 43.906667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82002001, "NOM_USUEL": "ALBIAS", "LAT": 44.082833, "LON": 1.410167, "ALTI": 81, "MIN_DATE": "1963-10-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.410167, 44.082833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82002002, "NOM_USUEL": "ALBIAS", "LAT": 44.081667, "LON": 1.41, "ALTI": 87, "MIN_DATE": "1964-12-01", "MAX_DATE": "1965-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.41, 44.081667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82005001, "NOM_USUEL": "AUCAMVILLE", "LAT": 43.791667, "LON": 1.266667, "ALTI": 120, "MIN_DATE": "1963-10-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.266667, 43.791667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82018001, "NOM_USUEL": "BIOULE LES VALETTES", "LAT": 44.09, "LON": 1.54, "ALTI": 85, "MIN_DATE": "1963-01-01", "MAX_DATE": "1968-02-29" }, "geometry": { "type": "Point", "coordinates": [ 1.54, 44.09 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82018003, "NOM_USUEL": "BIOULE", "LAT": 44.097333, "LON": 1.508167, "ALTI": 92, "MIN_DATE": "2002-07-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.508167, 44.097333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82022001, "NOM_USUEL": "BOURG-DE-VISA", "LAT": 44.261667, "LON": 0.9795, "ALTI": 220, "MIN_DATE": "1970-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.9795, 44.261667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82023001, "NOM_USUEL": "BOURRET LA LEINE", "LAT": 43.945, "LON": 1.166667, "ALTI": 90, "MIN_DATE": "1963-02-01", "MAX_DATE": "1967-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.166667, 43.945 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82026001, "NOM_USUEL": "BRUNIQUEL", "LAT": 44.051667, "LON": 1.665, "ALTI": 155, "MIN_DATE": "1974-01-01", "MAX_DATE": "1986-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.665, 44.051667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82033002, "NOM_USUEL": "CASTELSARRASIN", "LAT": 44.04, "LON": 1.106667, "ALTI": 87, "MIN_DATE": "1964-12-01", "MAX_DATE": "1966-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.106667, 44.04 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82033005, "NOM_USUEL": "CASTELSARRASIN", "LAT": 44.087, "LON": 1.129667, "ALTI": 72, "MIN_DATE": "1989-03-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.129667, 44.087 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82033006, "NOM_USUEL": "CASTEL-VIGOUSE", "LAT": 44.061667, "LON": 1.118333, "ALTI": 83, "MIN_DATE": "1960-01-01", "MAX_DATE": "1996-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.118333, 44.061667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82034001, "NOM_USUEL": "CASTERA-B", "LAT": 44.011667, "LON": 0.914, "ALTI": 115, "MIN_DATE": "1983-01-01", "MAX_DATE": "2022-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.914, 44.011667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82037001, "NOM_USUEL": "CAUSSADE ROUCOU", "LAT": 44.163333, "LON": 1.536667, "ALTI": 175, "MIN_DATE": "1964-09-01", "MAX_DATE": "1967-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.536667, 44.163333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82038004, "NOM_USUEL": "CAYLUS-BURGET", "LAT": 44.26, "LON": 1.721667, "ALTI": 360, "MIN_DATE": "1989-01-01", "MAX_DATE": "1996-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.721667, 44.26 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82038005, "NOM_USUEL": "CAYLUS-MALPERIE", "LAT": 44.221667, "LON": 1.706667, "ALTI": 282, "MIN_DATE": "1996-09-01", "MAX_DATE": "2002-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.706667, 44.221667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82038006, "NOM_USUEL": "CAYLUS", "LAT": 44.220167, "LON": 1.704167, "ALTI": 274, "MIN_DATE": "2002-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.704167, 44.220167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82039001, "NOM_USUEL": "CAYRAC", "LAT": 44.115, "LON": 1.503333, "ALTI": 132, "MIN_DATE": "1989-09-01", "MAX_DATE": "2002-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.503333, 44.115 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82039002, "NOM_USUEL": "CAYRAC-REALVIL", "LAT": 44.111667, "LON": 1.486667, "ALTI": 90, "MIN_DATE": "1969-05-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.486667, 44.111667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82044001, "NOM_USUEL": "CORBARIEU", "LAT": 43.927167, "LON": 1.386, "ALTI": 86, "MIN_DATE": "1978-01-01", "MAX_DATE": "2015-01-31" }, "geometry": { "type": "Point", "coordinates": [ 1.386, 43.927167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82045001, "NOM_USUEL": "CORDES-TOLOSANNES", "LAT": 43.971667, "LON": 1.118333, "ALTI": 160, "MIN_DATE": "1965-10-01", "MAX_DATE": "1978-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.118333, 43.971667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82049001, "NOM_USUEL": "DONZAC", "LAT": 44.086667, "LON": 0.815, "ALTI": 145, "MIN_DATE": "1988-07-01", "MAX_DATE": "1990-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.815, 44.086667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82049002, "NOM_USUEL": "DONZAC-DUNES", "LAT": 44.098333, "LON": 0.79, "ALTI": 83, "MIN_DATE": "1991-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.79, 44.098333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82051001, "NOM_USUEL": "DURFORT", "LAT": 44.175667, "LON": 1.166667, "ALTI": 151, "MIN_DATE": "1993-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.166667, 44.175667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82069001, "NOM_USUEL": "GINALS", "LAT": 44.213833, "LON": 1.866167, "ALTI": 319, "MIN_DATE": "1993-01-01", "MAX_DATE": "2010-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.866167, 44.213833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82072001, "NOM_USUEL": "GOLFECH CANTAROU", "LAT": 44.113333, "LON": 0.85, "ALTI": 59, "MIN_DATE": "1976-04-01", "MAX_DATE": "1986-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.85, 44.113333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82073001, "NOM_USUEL": "GOUDOURVILLE", "LAT": 44.103333, "LON": 0.946667, "ALTI": 70, "MIN_DATE": "1993-01-01", "MAX_DATE": "1994-06-30" }, "geometry": { "type": "Point", "coordinates": [ 0.946667, 44.103333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82076001, "NOM_USUEL": "L'HONOR-DE-COS", "LAT": 44.125833, "LON": 1.339333, "ALTI": 192, "MIN_DATE": "2001-07-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.339333, 44.125833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82079001, "NOM_USUEL": "LABASTIDE-SAINT-PIERRE", "LAT": 43.92, "LON": 1.366667, "ALTI": 102, "MIN_DATE": "1963-01-01", "MAX_DATE": "1965-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.366667, 43.92 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82084001, "NOM_USUEL": "LACOUR BOURG", "LAT": 44.291667, "LON": 0.945, "ALTI": 126, "MIN_DATE": "1965-01-01", "MAX_DATE": "1966-07-31" }, "geometry": { "type": "Point", "coordinates": [ 0.945, 44.291667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82087001, "NOM_USUEL": "LAFRANCAISE", "LAT": 44.128333, "LON": 1.241667, "ALTI": 190, "MIN_DATE": "1970-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.241667, 44.128333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82087003, "NOM_USUEL": "LAFRANCAISE RVC", "LAT": 44.158333, "LON": 1.213333, "ALTI": 105, "MIN_DATE": "1993-01-01", "MAX_DATE": "2001-06-30" }, "geometry": { "type": "Point", "coordinates": [ 1.213333, 44.158333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82089001, "NOM_USUEL": "LAMAGISTERE RIBET", "LAT": 44.125, "LON": 0.823333, "ALTI": 56, "MIN_DATE": "1962-10-01", "MAX_DATE": "1966-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.823333, 44.125 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82093001, "NOM_USUEL": "LARRAZET RAMBAILLE", "LAT": 43.93, "LON": 1.083333, "ALTI": 180, "MIN_DATE": "1979-01-01", "MAX_DATE": "1985-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.083333, 43.93 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82094001, "NOM_USUEL": "LAUZERTE_MAN", "LAT": 44.259333, "LON": 1.145167, "ALTI": 123, "MIN_DATE": "1977-02-01", "MAX_DATE": "2016-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.145167, 44.259333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82094004, "NOM_USUEL": "LAUZERTE", "LAT": 44.271, "LON": 1.1155, "ALTI": 231, "MIN_DATE": "2002-05-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.1155, 44.271 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82097003, "NOM_USUEL": "LAVIT", "LAT": 43.933833, "LON": 0.902833, "ALTI": 226, "MIN_DATE": "1961-12-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.902833, 43.933833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82098001, "NOM_USUEL": "LEOJAC BOSC BLANC", "LAT": 44.015, "LON": 1.431667, "ALTI": 213, "MIN_DATE": "1964-12-01", "MAX_DATE": "1971-07-31" }, "geometry": { "type": "Point", "coordinates": [ 1.431667, 44.015 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82099001, "NOM_USUEL": "LIZAC BOURG", "LAT": 44.105, "LON": 1.186667, "ALTI": 71, "MIN_DATE": "1963-10-01", "MAX_DATE": "1967-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.186667, 44.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82099002, "NOM_USUEL": "LIZAC", "LAT": 44.103333, "LON": 1.18, "ALTI": 71, "MIN_DATE": "1992-01-01", "MAX_DATE": "1992-11-30" }, "geometry": { "type": "Point", "coordinates": [ 1.18, 44.103333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82109001, "NOM_USUEL": "MERLES LA ROQUE", "LAT": 44.058333, "LON": 0.968333, "ALTI": 60, "MIN_DATE": "1964-12-01", "MAX_DATE": "1966-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.968333, 44.058333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82112001, "NOM_USUEL": "MOISSAC LA MEGERE", "LAT": 44.105, "LON": 1.085, "ALTI": 65, "MIN_DATE": "1961-07-01", "MAX_DATE": "1964-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.085, 44.105 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82112002, "NOM_USUEL": "MOISSAC", "LAT": 44.163333, "LON": 1.073333, "ALTI": 198, "MIN_DATE": "1971-01-01", "MAX_DATE": "2005-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.073333, 44.163333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82112004, "NOM_USUEL": "MOISSAC MARIGNIE", "LAT": 44.113833, "LON": 1.054333, "ALTI": 125, "MIN_DATE": "2006-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.054333, 44.113833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82113001, "NOM_USUEL": "MOLIERES", "LAT": 44.193333, "LON": 1.361667, "ALTI": 162, "MIN_DATE": "1970-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.361667, 44.193333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82113003, "NOM_USUEL": "MOLIERES-LAPEYRE", "LAT": 44.196, "LON": 1.358833, "ALTI": 136, "MIN_DATE": "1993-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.358833, 44.196 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82114001, "NOM_USUEL": "MONBEQUI", "LAT": 43.893667, "LON": 1.2375, "ALTI": 99, "MIN_DATE": "1993-01-01", "MAX_DATE": "2012-08-31" }, "geometry": { "type": "Point", "coordinates": [ 1.2375, 43.893667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82117001, "NOM_USUEL": "MONTAIGU", "LAT": 44.322333, "LON": 1.004833, "ALTI": 225, "MIN_DATE": "1963-10-01", "MAX_DATE": "2014-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.004833, 44.322333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82121005, "NOM_USUEL": "MONTAUBAN LE FAU", "LAT": 44.016667, "LON": 1.36, "ALTI": 115, "MIN_DATE": "1964-01-01", "MAX_DATE": "1966-04-30" }, "geometry": { "type": "Point", "coordinates": [ 1.36, 44.016667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82125001, "NOM_USUEL": "MONTECH", "LAT": 43.95, "LON": 1.25, "ALTI": 111, "MIN_DATE": "1969-05-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.25, 43.95 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82132001, "NOM_USUEL": "MONTRICOUX BOURG", "LAT": 44.076667, "LON": 1.62, "ALTI": 125, "MIN_DATE": "1963-10-01", "MAX_DATE": "1964-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.62, 44.076667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82132002, "NOM_USUEL": "MONTRICOUX", "LAT": 44.085333, "LON": 1.607, "ALTI": 108, "MIN_DATE": "1999-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.607, 44.085333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82134001, "NOM_USUEL": "NEGREPELISSE LA CASE", "LAT": 44.073333, "LON": 1.521667, "ALTI": 97, "MIN_DATE": "1963-10-01", "MAX_DATE": "1966-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.521667, 44.073333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82135001, "NOM_USUEL": "NOHIC LA RIVIERE", "LAT": 43.891667, "LON": 1.438333, "ALTI": 95, "MIN_DATE": "1962-10-01", "MAX_DATE": "1970-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.438333, 43.891667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82145001, "NOM_USUEL": "PUYGAILLARD-PIG", "LAT": 44.023333, "LON": 1.643333, "ALTI": 210, "MIN_DATE": "1987-01-01", "MAX_DATE": "1994-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.643333, 44.023333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82145002, "NOM_USUEL": "PUYGAILLARD MEZ", "LAT": 44.021667, "LON": 1.658333, "ALTI": 211, "MIN_DATE": "1993-01-01", "MAX_DATE": "2000-03-31" }, "geometry": { "type": "Point", "coordinates": [ 1.658333, 44.021667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82148001, "NOM_USUEL": "PUYLAROQUE", "LAT": 44.261833, "LON": 1.6125, "ALTI": 257, "MIN_DATE": "1993-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.6125, 44.261833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82151001, "NOM_USUEL": "ROQUECOR", "LAT": 44.325, "LON": 0.936667, "ALTI": 218, "MIN_DATE": "1970-08-01", "MAX_DATE": "1991-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.936667, 44.325 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82155001, "NOM_USUEL": "ST-ANTONIN", "LAT": 44.153333, "LON": 1.753333, "ALTI": 129, "MIN_DATE": "1971-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.753333, 44.153333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82155003, "NOM_USUEL": "ST-ANTONIN-TEUS", "LAT": 44.142167, "LON": 1.798167, "ALTI": 125, "MIN_DATE": "1993-01-01", "MAX_DATE": "2020-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.798167, 44.142167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82161001, "NOM_USUEL": "SAINT-ETIENNE-DE-TULMONT BOURG", "LAT": 44.048333, "LON": 1.461667, "ALTI": 108, "MIN_DATE": "1964-11-01", "MAX_DATE": "1965-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.461667, 44.048333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82166001, "NOM_USUEL": "ST-MICHEL", "LAT": 44.033333, "LON": 0.948333, "ALTI": 110, "MIN_DATE": "1960-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordinates": [ 0.948333, 44.033333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82169001, "NOM_USUEL": "ST-NICOLAS", "LAT": 44.055, "LON": 1.026667, "ALTI": 82, "MIN_DATE": "1964-01-01", "MAX_DATE": "1975-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.026667, 44.055 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82174001, "NOM_USUEL": "ST-VINCENT", "LAT": 44.170667, "LON": 1.459667, "ALTI": 191, "MIN_DATE": "1976-06-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.459667, 44.170667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82178001, "NOM_USUEL": "SAVENES_MAN", "LAT": 43.854167, "LON": 1.186167, "ALTI": 117, "MIN_DATE": "1986-04-01", "MAX_DATE": "2021-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.186167, 43.854167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82178002, "NOM_USUEL": "SAVENES", "LAT": 43.824167, "LON": 1.175, "ALTI": 156, "MIN_DATE": "2001-07-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.175, 43.824167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82179001, "NOM_USUEL": "SEPTFONDS", "LAT": 44.191667, "LON": 1.636667, "ALTI": 190, "MIN_DATE": "1991-01-01", "MAX_DATE": "1998-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.636667, 44.191667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82180001, "NOM_USUEL": "SERIGNAC", "LAT": 43.931833, "LON": 1.068333, "ALTI": 151, "MIN_DATE": "1978-01-01", "MAX_DATE": "2024-04-06" }, "geometry": { "type": "Point", "coordinates": [ 1.068333, 43.931833 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82184001, "NOM_USUEL": "VAISSAC COUTISSES", "LAT": 44.033333, "LON": 1.6, "ALTI": 160, "MIN_DATE": "1964-11-01", "MAX_DATE": "1973-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.6, 44.033333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82184002, "NOM_USUEL": "VAISSAC", "LAT": 44.025333, "LON": 1.626667, "ALTI": 146, "MIN_DATE": "2000-04-01", "MAX_DATE": "2017-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.626667, 44.025333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82186001, "NOM_USUEL": "VALENCE VILLE", "LAT": 44.116667, "LON": 0.898333, "ALTI": 60, "MIN_DATE": "1962-01-01", "MAX_DATE": "1976-09-30" }, "geometry": { "type": "Point", "coordinates": [ 0.898333, 44.116667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82186003, "NOM_USUEL": "VALENCE", "LAT": 44.116667, "LON": 0.873, "ALTI": 67, "MIN_DATE": "1994-07-01", "MAX_DATE": "2020-12-02" }, "geometry": { "type": "Point", "coordinates": [ 0.873, 44.116667 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82190001, "NOM_USUEL": "VERDUN-SUR-GARONNE", "LAT": 43.853333, "LON": 1.235, "ALTI": 116, "MIN_DATE": "1965-11-01", "MAX_DATE": "1975-09-30" }, "geometry": { "type": "Point", "coordinates": [ 1.235, 43.853333 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82193001, "NOM_USUEL": "VIGUERON", "LAT": 43.879167, "LON": 1.054667, "ALTI": 223, "MIN_DATE": "1974-01-01", "MAX_DATE": "2014-12-31" }, "geometry": { "type": "Point", "coordinates": [ 1.054667, 43.879167 ] } },
{ "type": "Feature", "properties": { "NUM_POSTE": 82194003, "NOM_USUEL": "VILLEBRUMIER", "LAT": 43.905, "LON": 1.453333, "ALTI": 92, "MIN_DATE": "1971-01-01", "MAX_DATE": "1992-12-31" }, "geometry": { "type": "Point", "coordin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment